ActiveInfo.java
4.87 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package com.cnlive.gundam.user.model;
import java.io.Serializable;
/**
* Created by Lynn on 5/25/2017.
*/
public class ActiveInfo implements Serializable {
private int totalCount;
private int nextCursor;
private int preCursor;
private String activityId;
private String activityName;
private int activityStatus;
private int isHorizontalScreen;
private String channelId;
private String createTime;
private String startTime;
private String endTime;
private String coverImgUrl;
private String activityCategory;
private Object extensions;
private String rates;
public ActiveInfo() {
}
public ActiveInfo(int totalCount, int nextCursor, int preCursor, String activityId, String activityName, int activityStatus, int isHorizontalScreen, String channelId, String createTime, String startTime, String endTime, String coverImgUrl, String activityCategory, Object extensions, String rates) {
this.totalCount = totalCount;
this.nextCursor = nextCursor;
this.preCursor = preCursor;
this.activityId = activityId;
this.activityName = activityName;
this.activityStatus = activityStatus;
this.isHorizontalScreen = isHorizontalScreen;
this.channelId = channelId;
this.createTime = createTime;
this.startTime = startTime;
this.endTime = endTime;
this.coverImgUrl = coverImgUrl;
this.activityCategory = activityCategory;
this.extensions = extensions;
this.rates = rates;
}
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public int getNextCursor() {
return nextCursor;
}
public void setNextCursor(int nextCursor) {
this.nextCursor = nextCursor;
}
public int getPreCursor() {
return preCursor;
}
public void setPreCursor(int preCursor) {
this.preCursor = preCursor;
}
public String getActivityId() {
return activityId;
}
public void setActivityId(String activityId) {
this.activityId = activityId;
}
public String getActivityName() {
return activityName;
}
public void setActivityName(String activityName) {
this.activityName = activityName;
}
public int getActivityStatus() {
return activityStatus;
}
public void setActivityStatus(int activityStatus) {
this.activityStatus = activityStatus;
}
public int getIsHorizontalScreen() {
return isHorizontalScreen;
}
public void setIsHorizontalScreen(int isHorizontalScreen) {
this.isHorizontalScreen = isHorizontalScreen;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getCoverImgUrl() {
return coverImgUrl;
}
public void setCoverImgUrl(String coverImgUrl) {
this.coverImgUrl = coverImgUrl;
}
public String getActivityCategory() {
return activityCategory;
}
public void setActivityCategory(String activityCategory) {
this.activityCategory = activityCategory;
}
public Object getExtensions() {
return extensions;
}
public void setExtensions(Object extensions) {
this.extensions = extensions;
}
public String getRates() {
return rates;
}
public void setRates(String rates) {
this.rates = rates;
}
@Override
public String toString() {
return "ActiveInfo{" +
"totalCount=" + totalCount +
", nextCursor=" + nextCursor +
", preCursor=" + preCursor +
", activityId='" + activityId + '\'' +
", activityName='" + activityName + '\'' +
", activityStatus=" + activityStatus +
", isHorizontalScreen=" + isHorizontalScreen +
", channelId='" + channelId + '\'' +
", createTime='" + createTime + '\'' +
", startTime='" + startTime + '\'' +
", endTime='" + endTime + '\'' +
", coverImgUrl='" + coverImgUrl + '\'' +
", activityCategory='" + activityCategory + '\'' +
", extensions='" + extensions + '\'' +
", rates='" + rates + '\'' +
'}';
}
}