HeavyLiveAllResponse.java
2.96 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
93
94
95
96
97
98
99
100
101
102
package com.cnlive.goldenline.model.response;
import com.cnlive.goldenline.model.response.bean.LiveShowBean;
import java.util.List;
/**
* Created by Lynn on 4/13/2017.
*/
public class HeavyLiveAllResponse extends BaseResponse {
List<LiveShowBean> oneLiveList;
List<LiveShowBean> twoLiveList;
List<LiveShowBean> threeLiveList;
List<LiveShowBean> fourLiveList;
List<LiveShowBean> fiveLiveList;
List<LiveShowBean> sixLiveList;
List<LiveShowBean> sevenLiveList;
public HeavyLiveAllResponse() {
}
public HeavyLiveAllResponse(int code, String errMsg, List<LiveShowBean> oneLiveList, List<LiveShowBean> twoLiveList, List<LiveShowBean> threeLiveList, List<LiveShowBean> fourLiveList, List<LiveShowBean> fiveLiveList, List<LiveShowBean> sixLiveList, List<LiveShowBean> sevenLiveList) {
super(code, errMsg);
this.oneLiveList = oneLiveList;
this.twoLiveList = twoLiveList;
this.threeLiveList = threeLiveList;
this.fourLiveList = fourLiveList;
this.fiveLiveList = fiveLiveList;
this.sixLiveList = sixLiveList;
this.sevenLiveList = sevenLiveList;
}
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;
}
@Override
public String toString() {
return "HeavyLiveAllResponse{" +
"oneLiveList=" + oneLiveList +
", twoLiveList=" + twoLiveList +
", threeLiveList=" + threeLiveList +
", fourLiveList=" + fourLiveList +
", fiveLiveList=" + fiveLiveList +
", sixLiveList=" + sixLiveList +
", sevenLiveList=" + sevenLiveList +
'}';
}
}