RemarkBean.java
6.8 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
package com.wd.foundation.bean.message;
import com.wd.foundation.bean.base.BaseBean;
public class RemarkBean extends BaseBean {
private String beReply;
private String headUrl;
private String contentId;
private String contentRelObjectid;
private String userType;
private String contentTitle;
private String userName;
private int contentRelType;
private String userId;
private String contentType;
private String contentRelId;
private String creatorId;
private String liveName;
private String liveTime;
private String creatorName;
private String videoName;
private String activityStartTime;
private String activityEndTime;
private String activityType;
private String comment;
private String coverImageBucket;
private String coverImageUri;
private String coverImageUrl;
private String relationId;
private String relationType;
/**
* 直播状态
*/
private String status;
/**
* 直播计划开始时间
*/
private long planStartTimeLong;
/**
* 内容类型
*/
private String objectType;
/**
* 内容关系id
*/
private String ObjectPosld;
/**
* 内容的关系类型
*/
private int type;
/**
* 审核类型
* 0:审核未通过
* 1:未通过
*/
private String checkType;
/**
* 内容上线/下线区分
* 0:下线
* 1:上线
*/
private String contentOnlineType;
public String getBeReply() {
return beReply;
}
public void setBeReply(String beReply) {
this.beReply = beReply;
}
public String getHeadUrl() {
return headUrl;
}
public void setHeadUrl(String headUrl) {
this.headUrl = headUrl;
}
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
public String getContentRelObjectid() {
return contentRelObjectid;
}
public void setContentRelObjectid(String contentRelObjectid) {
this.contentRelObjectid = contentRelObjectid;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getContentTitle() {
return contentTitle;
}
public void setContentTitle(String contentTitle) {
this.contentTitle = contentTitle;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public int getContentRelType() {
return contentRelType;
}
public void setContentRelType(int contentRelType) {
this.contentRelType = contentRelType;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public String getContentRelId() {
return contentRelId;
}
public void setContentRelId(String contentRelId) {
this.contentRelId = contentRelId;
}
public String getCreatorId() {
return creatorId;
}
public void setCreatorId(String creatorId) {
this.creatorId = creatorId;
}
public String getLiveName() {
return liveName;
}
public void setLiveName(String liveName) {
this.liveName = liveName;
}
public String getLiveTime() {
return liveTime;
}
public void setLiveTime(String liveTime) {
this.liveTime = liveTime;
}
public String getCreatorName() {
return creatorName;
}
public void setCreatorName(String creatorName) {
this.creatorName = creatorName;
}
public String getVideoName() {
return videoName;
}
public void setVideoName(String videoName) {
this.videoName = videoName;
}
public String getActivityStartTime() {
return activityStartTime;
}
public void setActivityStartTime(String activityStartTime) {
this.activityStartTime = activityStartTime;
}
public String getActivityEndTime() {
return activityEndTime;
}
public void setActivityEndTime(String activityEndTime) {
this.activityEndTime = activityEndTime;
}
public String getActivityType() {
return activityType;
}
public void setActivityType(String activityType) {
this.activityType = activityType;
}
public String getCoverImageBucket() {
return coverImageBucket;
}
public void setCoverImageBucket(String coverImageBucket) {
this.coverImageBucket = coverImageBucket;
}
public String getCoverImageUri() {
return coverImageUri;
}
public void setCoverImageUri(String coverImageUri) {
this.coverImageUri = coverImageUri;
}
public String getCoverImageUrl() {
return coverImageUrl;
}
public void setCoverImageUrl(String coverImageUrl) {
this.coverImageUrl = coverImageUrl;
}
public String getRelationId() {
return relationId;
}
public void setRelationId(String relationId) {
this.relationId = relationId;
}
public String getRelationType() {
return relationType;
}
public void setRelationType(String relationType) {
this.relationType = relationType;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public long getPlanStartTimeLong() {
return planStartTimeLong;
}
public void setPlanStartTimeLong(long planStartTimeLong) {
this.planStartTimeLong = planStartTimeLong;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getObjectType() {
return objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
}
public String getObjectPosld() {
return ObjectPosld;
}
public void setObjectPosld(String objectPosld) {
ObjectPosld = objectPosld;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getCheckType() {
return checkType;
}
public void setCheckType(String checkType) {
this.checkType = checkType;
}
public String getContentOnlineType() {
return contentOnlineType;
}
public void setContentOnlineType(String contentOnlineType) {
this.contentOnlineType = contentOnlineType;
}
}