lmw
2023-03-10 28ebc366edb1509b224ce443757038ea07fe5a6f
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.fuban.user.views.textbanner;
 
/**
 *
 * @描述 点击监听回调接口
 * @author luoweichao
 * @email superluo666@gmail.com
 * @date 2018/3/28/028 21:40
 *
 */
public interface ITextBannerItemClickListener<T> {
    void onItemClick(T data, int position);
}