PlayPage.java
2.63 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.cnlive.goldenline.model;
import java.io.Serializable;
import java.util.List;
/**
* Created by Administrator on 2016/4/28.
*/
public class PlayPage implements Serializable {
private String tag;
private String title;
private PlayItemInfo playItemInfo;
private List<List<PlayViewRecommendEntity>> playViewRecommend;
private PlayViewComment playViewComment;
private AllData_Zb_Anchor allData_zb_anchor;
private WatchPeople into_zb;
public PlayPage(String tag, PlayItemInfo playItemInfo, List<List<PlayViewRecommendEntity>> playViewRecommend, PlayViewComment playViewComment) {//点播时用
this.tag = tag;
this.playItemInfo = playItemInfo;
this.playViewRecommend=playViewRecommend;
this.playViewComment=playViewComment;
}
public PlayPage(String tag, String title) {//点播时用
this.tag = tag;
this.title = title;
}
public PlayPage(String tag, WatchPeople into_zb, PlayViewComment playViewComment) {//直播时用
this.tag = tag;
this.into_zb = into_zb;
this.playViewComment = playViewComment;
}
public PlayPage(String tag, AllData_Zb_Anchor AllData_zb_anchor1, AllData_Zb_Anchor AllData_zb_anchor2) {//2.3版本后直播时用
this.tag = tag;
this.allData_zb_anchor = AllData_zb_anchor1;
this.allData_zb_anchor = AllData_zb_anchor2;
}
public AllData_Zb_Anchor getAllData_zb_anchor() { return allData_zb_anchor; }
public void setAllData_zb_anchor(AllData_Zb_Anchor allData_zb_anchor) { this.allData_zb_anchor = allData_zb_anchor; }
public PlayViewComment getPlayViewComment() {
return playViewComment;
}
public void setPlayViewComment(PlayViewComment playViewComment) { this.playViewComment = playViewComment; }
public WatchPeople getInto_zb() {
return into_zb;
}
public void setInto_zb(WatchPeople into_zb) {
this.into_zb = into_zb;
}
public String getTag() {
return tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public PlayItemInfo getPlayItemInfo() {
return playItemInfo;
}
public void setPlayItemInfo(PlayItemInfo playItemInfo) {
this.playItemInfo = playItemInfo;
}
public List<List<PlayViewRecommendEntity>> getPlayViewRecommend() {
return playViewRecommend;
}
public void setPlayViewRecommend(List<List<PlayViewRecommendEntity>> playViewRecommend) {
this.playViewRecommend = playViewRecommend;
}
}