EditRecomendBean.java
5.85 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
package com.cnlive.goldenline.model;
import java.util.List;
/**
* Created by luxiaoman on 2017/4/8.
*/
public class EditRecomendBean{
/**
* errMsg : 成功
* code : 0
* data : [{"id":2,"createTime":"2017-03-27 08:23:26","updateTime":"2017-03-29 05:00:34","enabled":1,"theatreName":"测试剧院","theatreCover":"http://shtml.asia-cloud.com/touxiang/2.png","description":"这是测试的简介","channelId":"ceshijuyuan","boxOffice":null,"theatreStatus":1,"recommend":1,"playTour":null},{"id":3,"createTime":"2017-03-28 03:58:47","updateTime":"2017-03-28 03:58:47","enabled":0,"theatreName":"测试剧场","theatreCover":"http://shtml.asia-cloud.com/touxiang/3.png","description":"测试简介","channelId":"ceshijuchang","boxOffice":null,"theatreStatus":0,"recommend":1,"playTour":null},{"id":4,"createTime":"2017-03-28 03:59:58","updateTime":"2017-03-28 03:59:58","enabled":0,"theatreName":"测试剧场","theatreCover":"http://shtml.asia-cloud.com/touxiang/4.png","description":"测试简介","channelId":"ceshi juchang","boxOffice":null,"theatreStatus":0,"recommend":1,"playTour":null},{"id":5,"createTime":"2017-03-28 05:25:24","updateTime":"2017-03-28 05:25:24","enabled":0,"theatreName":"剧场名称","theatreCover":"http://shtml.asia-cloud.com/touxiang/5.png","description":"","channelId":"juchang","boxOffice":null,"theatreStatus":0,"recommend":1,"playTour":null}]
*/
private String errMsg;
private int code;
private List<DataBean> data;
@Override
public String toString() {
return "EditRecomendBean{" +
"errMsg='" + errMsg + '\'' +
", code=" + code +
", data=" + 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;
}
public static class DataBean {
/**
* id : 2
* createTime : 2017-03-27 08:23:26
* updateTime : 2017-03-29 05:00:34
* enabled : 1
* theatreName : 测试剧院
* theatreCover : http://shtml.asia-cloud.com/touxiang/2.png
* description : 这是测试的简介
* channelId : ceshijuyuan
* boxOffice : null
* theatreStatus : 1
* recommend : 1
* playTour : null
*/
private int id;
private String createTime;
private String updateTime;
private int enabled;
private String theatreName;
private String theatreCover;
private String description;
private String channelId;
private Object boxOffice;
private int theatreStatus;
private int recommend;
private Object playTour;
@Override
public String toString() {
return "DataBean{" +
"id=" + id +
", createTime='" + createTime + '\'' +
", updateTime='" + updateTime + '\'' +
", enabled=" + enabled +
", theatreName='" + theatreName + '\'' +
", theatreCover='" + theatreCover + '\'' +
", description='" + description + '\'' +
", channelId='" + channelId + '\'' +
", boxOffice=" + boxOffice +
", theatreStatus=" + theatreStatus +
", recommend=" + recommend +
", playTour=" + playTour +
'}';
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public int getEnabled() {
return enabled;
}
public void setEnabled(int enabled) {
this.enabled = enabled;
}
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 String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public Object getBoxOffice() {
return boxOffice;
}
public void setBoxOffice(Object boxOffice) {
this.boxOffice = boxOffice;
}
public int getTheatreStatus() {
return theatreStatus;
}
public void setTheatreStatus(int theatreStatus) {
this.theatreStatus = theatreStatus;
}
public int getRecommend() {
return recommend;
}
public void setRecommend(int recommend) {
this.recommend = recommend;
}
public Object getPlayTour() {
return playTour;
}
public void setPlayTour(Object playTour) {
this.playTour = playTour;
}
}
}