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
package com.yanzuoguang.wxxcx.liveBroadcast.vo;
import java.util.List;
/***
* 直播数据
*
* @author:heyanou
*/
public class RoomInfo {
/***
* <p>
* 描述:直播间名称
* </p>
*/
private String name;
/***
* <p>
* 描述:直播间背景图链接
* </p>
*/
private String cover_img;
/***
* <p>
* 描述:直播间开始时间,列表按照start_time降序排列
* </p>
*/
private Long start_time;
/***
* <p>
* 描述:直播计划结束时间
* </p>
*/
private Long end_time;
/***
* <p>
* 描述:主播名
* </p>
*/
private String anchor_name;
/***
* <p>
* 描述:直播间ID
* </p>
*/
private Long roomid;
/***
* <p>
* 描述:商品
* </p>
*/
private List<LiveBroadcastGoods> goods;
/***
* <p>
* 描述:直播间状态。101:直播中,102:未开始,103已结束,104禁播,105:暂停,106:异常,107:已过期
* </p>
*/
private Integer live_status;
/***
* <p>
* 描述:直播间分享图链接
* </p>
*/
private String share_img;
/***
* <p>
* 描述:直播类型,1 推流 0 手机直播
* </p>
*/
private Integer live_type;
/***
* <p>
* 描述:是否关闭点赞 【0:开启,1:关闭】(若关闭,观众端将隐藏点赞按钮,直播开始后不允许开启)
* </p>
*/
private Integer close_like;
/***
* <p>
* 描述:是否关闭货架 【0:开启,1:关闭】(若关闭,观众端将隐藏商品货架,直播开始后不允许开启)
* </p>
*/
private Integer close_goods;
/***
* <p>
* 描述:是否关闭评论 【0:开启,1:关闭】(若关闭,观众端将隐藏评论入口,直播开始后不允许开启)
* </p>
*/
private Integer close_comment;
/***
* <p>
* 描述:是否关闭客服 【0:开启,1:关闭】 默认关闭客服(直播开始后允许开启)
* </p>
*/
private Integer close_kf;
/***
* <p>
* 描述:是否关闭回放 【0:开启,1:关闭】默认关闭回放(直播开始后允许开启)
* </p>
*/
private Integer close_replay;
/***
* <p>
* 描述:是否开启官方收录,1 开启,0 关闭
* </p>
*/
private Integer is_feeds_public;
/***
* <p>
* 描述:创建者openid
* </p>
*/
private String creater_openid;
/***
* <p>
* 描述:官方收录封面
* </p>
*/
private String feeds_img;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCover_img() {
return cover_img;
}
public void setCover_img(String cover_img) {
this.cover_img = cover_img;
}
public Long getStart_time() {
return start_time;
}
public void setStart_time(Long start_time) {
this.start_time = start_time;
}
public Long getEnd_time() {
return end_time;
}
public void setEnd_time(Long end_time) {
this.end_time = end_time;
}
public String getAnchor_name() {
return anchor_name;
}
public void setAnchor_name(String anchor_name) {
this.anchor_name = anchor_name;
}
public Long getRoomid() {
return roomid;
}
public void setRoomid(Long roomid) {
this.roomid = roomid;
}
public List<LiveBroadcastGoods> getGoods() {
return goods;
}
public void setGoods(List<LiveBroadcastGoods> goods) {
this.goods = goods;
}
public Integer getLive_status() {
return live_status;
}
public void setLive_status(Integer live_status) {
this.live_status = live_status;
}
public String getShare_img() {
return share_img;
}
public void setShare_img(String share_img) {
this.share_img = share_img;
}
public Integer getLive_type() {
return live_type;
}
public void setLive_type(Integer live_type) {
this.live_type = live_type;
}
public Integer getClose_like() {
return close_like;
}
public void setClose_like(Integer close_like) {
this.close_like = close_like;
}
public Integer getClose_goods() {
return close_goods;
}
public void setClose_goods(Integer close_goods) {
this.close_goods = close_goods;
}
public Integer getClose_comment() {
return close_comment;
}
public void setClose_comment(Integer close_comment) {
this.close_comment = close_comment;
}
public Integer getClose_kf() {
return close_kf;
}
public void setClose_kf(Integer close_kf) {
this.close_kf = close_kf;
}
public Integer getClose_replay() {
return close_replay;
}
public void setClose_replay(Integer close_replay) {
this.close_replay = close_replay;
}
public Integer getIs_feeds_public() {
return is_feeds_public;
}
public void setIs_feeds_public(Integer is_feeds_public) {
this.is_feeds_public = is_feeds_public;
}
public String getCreater_openid() {
return creater_openid;
}
public void setCreater_openid(String creater_openid) {
this.creater_openid = creater_openid;
}
public String getFeeds_img() {
return feeds_img;
}
public void setFeeds_img(String feeds_img) {
this.feeds_img = feeds_img;
}
}