FindActBean.java
3.57 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
103
104
105
106
107
108
109
110
package com.cnlive.goldenline.model;
import java.util.List;
/**
* Created by luxiaoman on 2017/4/9.
*/
public class FindActBean {
/**
* code : 0
* dataList : [{"activityHtmlUrl":"http://v.cnlive.com/sports/v_g4zdsnzyg4.html?itemId=685732&from=timeline&isappinstalled=0","activityHtmlType":"1","activityHtmlImg":"http://shtml.asia-cloud.com/adv/3.png ","activityHtmlName":"活动3"},{"activityHtmlUrl":"http://v.cnlive.com/sports/v_g4zdsnzyg4.html?itemId=685732&from=timeline&isappinstalled=0","activityHtmlType":"1","activityHtmlImg":"http://shtml.asia-cloud.com/adv/2.png ","activityHtmlName":"活动2"},{"activityHtmlUrl":"http://v.cnlive.com/sports/v_g4zdsnzyg4.html?itemId=685732&from=timeline&isappinstalled=0","activityHtmlType":"1","activityHtmlImg":"http://shtml.asia-cloud.com/adv/1.png ","activityHtmlName":"活动1"},{"activityHtmlUrl":"http://v.cnlive.com/sports/v_g4zdsnzyg4.html?itemId=685732&from=timeline&isappinstalled=0","activityHtmlType":"2","activityHtmlImg":"http://shtml.asia-cloud.com/adv/4.png ","activityHtmlName":"活动4"}]
* errMsg : success
*/
private int code;
private String errMsg;
private List<DataListBean> dataList;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
public List<DataListBean> getDataList() {
return dataList;
}
public void setDataList(List<DataListBean> dataList) {
this.dataList = dataList;
}
@Override
public String toString() {
return "FindActBean{" +
"code=" + code +
", errMsg='" + errMsg + '\'' +
", dataList=" + dataList +
'}';
}
public static class DataListBean {
/**
* activityHtmlUrl : http://v.cnlive.com/sports/v_g4zdsnzyg4.html?itemId=685732&from=timeline&isappinstalled=0
* activityHtmlType : 1
* activityHtmlImg : http://shtml.asia-cloud.com/adv/3.png
* activityHtmlName : 活动3
*/
private String activityHtmlUrl;
private String activityHtmlType;
private String activityHtmlImg;
private String activityHtmlName;
public String getActivityHtmlUrl() {
return activityHtmlUrl;
}
public void setActivityHtmlUrl(String activityHtmlUrl) {
this.activityHtmlUrl = activityHtmlUrl;
}
public String getActivityHtmlType() {
return activityHtmlType;
}
public void setActivityHtmlType(String activityHtmlType) {
this.activityHtmlType = activityHtmlType;
}
public String getActivityHtmlImg() {
return activityHtmlImg;
}
public void setActivityHtmlImg(String activityHtmlImg) {
this.activityHtmlImg = activityHtmlImg;
}
public String getActivityHtmlName() {
return activityHtmlName;
}
public void setActivityHtmlName(String activityHtmlName) {
this.activityHtmlName = activityHtmlName;
}
@Override
public String toString() {
return "DataListBean{" +
"activityHtmlUrl='" + activityHtmlUrl + '\'' +
", activityHtmlType='" + activityHtmlType + '\'' +
", activityHtmlImg='" + activityHtmlImg + '\'' +
", activityHtmlName='" + activityHtmlName + '\'' +
'}';
}
}
}