HomeDataResponse.java
1.62 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
package com.cnlive.goldenline.model.response;
import com.cnlive.goldenline.model.response.bean.LiveShowBean;
import java.util.List;
/**
* Description:
* Created on 2017/3/29
* Author : 萧
*/
public class HomeDataResponse extends BaseResponse {
/**
* 推荐直播
*/
private List<LiveShowBean> onlineLiveList;
/**
* 重磅预约
*/
private List<LiveShowBean> appointmentLiveList;
public HomeDataResponse() {
}
public HomeDataResponse(List<LiveShowBean> onlineLiveList, List<LiveShowBean> appointmentLiveList) {
this.onlineLiveList = onlineLiveList;
this.appointmentLiveList = appointmentLiveList;
}
public HomeDataResponse(int code, String errMsg, List<LiveShowBean> onlineLiveList, List<LiveShowBean> appointmentLiveList) {
super(code, errMsg);
this.onlineLiveList = onlineLiveList;
this.appointmentLiveList = appointmentLiveList;
}
public List<LiveShowBean> getOnlineLiveList() {
return onlineLiveList;
}
public void setOnlineLiveList(List<LiveShowBean> onlineLiveList) {
this.onlineLiveList = onlineLiveList;
}
public List<LiveShowBean> getAppointmentLiveList() {
return appointmentLiveList;
}
public void setAppointmentLiveList(List<LiveShowBean> appointmentLiveList) {
this.appointmentLiveList = appointmentLiveList;
}
@Override
public String toString() {
return "HomeDataResponse{" +
"onlineLiveList=" + onlineLiveList +
", appointmentLiveList=" + appointmentLiveList +
"} " + super.toString();
}
}