EventPlayerItemClick.java
953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.cnlive.goldenline.ui.model;
/**
* Created by gujun on 2017/3/17.
* 播放器列表每个item内的按钮点击事件
*/
public class EventPlayerItemClick {
public static final int SHARE_CLICK = 0x3001;
public static final int REWARD_CLICK = 0x3002;
public static final int PLAY_CLICK = 0x3003;
private int id;
private PlayBean item;
private int position;
public EventPlayerItemClick(int id, PlayBean item, int position) {
this.id = id;
this.item = item;
this.position = position;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public PlayBean getItem() {
return item;
}
public void setItem(PlayBean item) {
this.item = item;
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
}