FindSubscribeBean.java
9.33 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
package com.cnlive.goldenline.model;
import java.io.Serializable;
import java.util.List;
/**
* Created by luxiaoman on 2017/4/9.
*/
public class FindSubscribeBean implements Serializable {
/**
* errMsg : 成功
* code : 0
* data : [{"theatreId":1,"theatreArray":null,"type":0,"showId":null,"createTime":1490457600000,"updateTime":1490763649000,"theatreName":"保利剧院","theatreCover":"http://shtml.asia-cloud.com/touxiang/1.png","theatreCoverImgUrl":null,"theatreDes":"歌剧话剧","channelId":"baolijuyuan","boxOffice":"3000000","theatreStatus":null,"playTour":"2000000","userId":null,"theatreFans":1,"isOrdered":0,"theatreVideoCount":0,"theatreActors":null,"theatreShareUrl":null,"mediaList":null,"enabled":1,"code":0,"errMsg":""},{"theatreId":1,"theatreArray":null,"type":0,"showId":null,"createTime":1490457600000,"updateTime":1490763649000,"theatreName":"保利剧院","theatreCover":"http://shtml.asia-cloud.com/touxiang/1.png","theatreCoverImgUrl":null,"theatreDes":"歌剧话剧","channelId":"baolijuyuan","boxOffice":"3000000","theatreStatus":null,"playTour":"2000000","userId":null,"theatreFans":1,"isOrdered":0,"theatreVideoCount":0,"theatreActors":null,"theatreShareUrl":null,"mediaList":null,"enabled":1,"code":0,"errMsg":""}]
*/
private String errMsg;
private int code;
private List<DataBean> data;
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public List<DataBean> getData() {
return data;
}
public void setData(List<DataBean> data) {
this.data = data;
}
@Override
public String toString() {
return "FindSubscribeBean{" +
"errMsg='" + errMsg + '\'' +
", code=" + code +
", data=" + data +
'}';
}
public static class DataBean implements Serializable {
/**
* theatreId : 1
* theatreArray : null
* type : 0
* showId : null
* createTime : 1490457600000
* updateTime : 1490763649000
* theatreName : 保利剧院
* theatreCover : http://shtml.asia-cloud.com/touxiang/1.png
* theatreCoverImgUrl : null
* theatreDes : 歌剧话剧
* channelId : baolijuyuan
* boxOffice : 3000000
* theatreStatus : null
* playTour : 2000000
* userId : null
* theatreFans : 1
* isOrdered : 0
* theatreVideoCount : 0
* theatreActors : null
* theatreShareUrl : null
* mediaList : null
* enabled : 1
* code : 0
* errMsg :
*/
private int theatreId;
private Object theatreArray;
private int type;
private Object showId;
private long createTime;
private long updateTime;
private String theatreName;
private String theatreCover;
private Object theatreCoverImgUrl;
private String theatreDes;
private String channelId;
private String boxOffice;
private Object theatreStatus;
private String playTour;
private Object userId;
private long theatreFans;
private int isOrdered;
private int theatreVideoCount;
private Object theatreActors;
private Object theatreShareUrl;
private Object mediaList;
private int enabled;
private int code;
private String errMsg;
public int getTheatreId() {
return theatreId;
}
public void setTheatreId(int theatreId) {
this.theatreId = theatreId;
}
public Object getTheatreArray() {
return theatreArray;
}
public void setTheatreArray(Object theatreArray) {
this.theatreArray = theatreArray;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public Object getShowId() {
return showId;
}
public void setShowId(Object showId) {
this.showId = showId;
}
public long getCreateTime() {
return createTime;
}
public void setCreateTime(long createTime) {
this.createTime = createTime;
}
public long getUpdateTime() {
return updateTime;
}
public void setUpdateTime(long updateTime) {
this.updateTime = updateTime;
}
public String getTheatreName() {
return theatreName;
}
public void setTheatreName(String theatreName) {
this.theatreName = theatreName;
}
public String getTheatreCover() {
return theatreCover;
}
public void setTheatreCover(String theatreCover) {
this.theatreCover = theatreCover;
}
public Object getTheatreCoverImgUrl() {
return theatreCoverImgUrl;
}
public void setTheatreCoverImgUrl(Object theatreCoverImgUrl) {
this.theatreCoverImgUrl = theatreCoverImgUrl;
}
public String getTheatreDes() {
return theatreDes;
}
public void setTheatreDes(String theatreDes) {
this.theatreDes = theatreDes;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getBoxOffice() {
return boxOffice;
}
public void setBoxOffice(String boxOffice) {
this.boxOffice = boxOffice;
}
public Object getTheatreStatus() {
return theatreStatus;
}
public void setTheatreStatus(Object theatreStatus) {
this.theatreStatus = theatreStatus;
}
public String getPlayTour() {
return playTour;
}
public void setPlayTour(String playTour) {
this.playTour = playTour;
}
public Object getUserId() {
return userId;
}
public void setUserId(Object userId) {
this.userId = userId;
}
public long getTheatreFans() {
return theatreFans;
}
public void setTheatreFans(long theatreFans) {
this.theatreFans = theatreFans;
}
public int getIsOrdered() {
return isOrdered;
}
public void setIsOrdered(int isOrdered) {
this.isOrdered = isOrdered;
}
public int getTheatreVideoCount() {
return theatreVideoCount;
}
public void setTheatreVideoCount(int theatreVideoCount) {
this.theatreVideoCount = theatreVideoCount;
}
public Object getTheatreActors() {
return theatreActors;
}
public void setTheatreActors(Object theatreActors) {
this.theatreActors = theatreActors;
}
public Object getTheatreShareUrl() {
return theatreShareUrl;
}
public void setTheatreShareUrl(Object theatreShareUrl) {
this.theatreShareUrl = theatreShareUrl;
}
public Object getMediaList() {
return mediaList;
}
public void setMediaList(Object mediaList) {
this.mediaList = mediaList;
}
public int getEnabled() {
return enabled;
}
public void setEnabled(int enabled) {
this.enabled = enabled;
}
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;
}
@Override
public String toString() {
return "DataBean{" +
"theatreId=" + theatreId +
", theatreArray=" + theatreArray +
", type=" + type +
", showId=" + showId +
", createTime=" + createTime +
", updateTime=" + updateTime +
", theatreName='" + theatreName + '\'' +
", theatreCover='" + theatreCover + '\'' +
", theatreCoverImgUrl=" + theatreCoverImgUrl +
", theatreDes='" + theatreDes + '\'' +
", channelId='" + channelId + '\'' +
", boxOffice='" + boxOffice + '\'' +
", theatreStatus=" + theatreStatus +
", playTour='" + playTour + '\'' +
", userId=" + userId +
", theatreFans=" + theatreFans +
", isOrdered=" + isOrdered +
", theatreVideoCount=" + theatreVideoCount +
", theatreActors=" + theatreActors +
", theatreShareUrl=" + theatreShareUrl +
", mediaList=" + mediaList +
", enabled=" + enabled +
", code=" + code +
", errMsg='" + errMsg + '\'' +
'}';
}
}
}