AllSubscribeResponse.java
2.09 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
package com.cnlive.goldenline.model.response;
import com.cnlive.goldenline.model.response.bean.LiveShowBean;
import java.util.ArrayList;
import java.util.List;
/**
* description:
* Created by Sivin on 2017/4/14.
*/
public class AllSubscribeResponse extends BaseResponse {
private List<LiveShowBean> oneLiveList = new ArrayList<>();
private List<LiveShowBean> twoLiveList = new ArrayList<>();
private List<LiveShowBean> threeLiveList = new ArrayList<>();
private List<LiveShowBean> fourLiveList = new ArrayList<>();
private List<LiveShowBean> fiveLiveList = new ArrayList<>();
private List<LiveShowBean> sixLiveList = new ArrayList<>();
private List<LiveShowBean> sevenLiveList = new ArrayList<>();
public List<LiveShowBean> getOneLiveList() {
return oneLiveList;
}
public void setOneLiveList(List<LiveShowBean> oneLiveList) {
this.oneLiveList = oneLiveList;
}
public List<LiveShowBean> getTwoLiveList() {
return twoLiveList;
}
public void setTwoLiveList(List<LiveShowBean> twoLiveList) {
this.twoLiveList = twoLiveList;
}
public List<LiveShowBean> getThreeLiveList() {
return threeLiveList;
}
public void setThreeLiveList(List<LiveShowBean> threeLiveList) {
this.threeLiveList = threeLiveList;
}
public List<LiveShowBean> getFourLiveList() {
return fourLiveList;
}
public void setFourLiveList(List<LiveShowBean> fourLiveList) {
this.fourLiveList = fourLiveList;
}
public List<LiveShowBean> getFiveLiveList() {
return fiveLiveList;
}
public void setFiveLiveList(List<LiveShowBean> fiveLiveList) {
this.fiveLiveList = fiveLiveList;
}
public List<LiveShowBean> getSixLiveList() {
return sixLiveList;
}
public void setSixLiveList(List<LiveShowBean> sixLiveList) {
this.sixLiveList = sixLiveList;
}
public List<LiveShowBean> getSevenLiveList() {
return sevenLiveList;
}
public void setSevenLiveList(List<LiveShowBean> sevenLiveList) {
this.sevenLiveList = sevenLiveList;
}
}