EditDataBean.java
7.81 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
package com.wd.foundation.bean.publish;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
import com.wd.foundation.bean.response.VideoParams;
/**
* 移动生产-编辑-内容详情Bean
*
* @author baozhaoxin
* @version [V1.0.0, 2023/9/27]
* @since V1.0.0
*/
public class EditDataBean extends BaseBean {
/**
* App样式 1:小图卡,2:大图卡,3:无图卡(全标题),4:三图卡,5:头图卡,6:小视频卡,7:作者卡,8:财经快讯卡,
* 9:时间轴卡,10:大专题卡,11.无图卡(标题缩略),12.无图卡(标题缩略)-人民号,13.单图卡,14.单图卡-人民号,
* 15.大图卡-人民号,16.三图卡-人民号,17.图集卡,18.图集卡-人民号,19.动态图文卡-人民号,20.动态视频卡-人民号
*/
private String appStyle;
/**
* 主表信息
*/
private EditContentBean content;
/**
* 文本信息
*/
private List<EditContentTxtBean> contentTxt;
/**
* 扩展信息
*/
private List<EditContentExtBean> contentExt;
/**
* 图片信息
*/
private List<EditContentPictureBean> contentPictures;
/**
* 视频信息
*/
private List<VideoParams> contentVideos;
/**
* 内容标签
*/
private List<EditContentTags> contentTags;
/**
* 创建时间
*/
private String createTime;
/**
* 创建人id
*/
private String createUserId;
/**
* 创建人名称
*/
private String createUserName;
private String deleted;
private String description;
/**
* 首次发布时间
*/
private String firstPublishTime;
/**
* 文章id
*/
private String id;
/**
* 发布时间
*/
private long publishTime;
/**
* 发布类型 1:立即发布, 2:定时发布
*/
private String publishType;
/**
* 租户(1-视界 2-英文版 3-中文版)
*/
private String tenancy;
/**
* 标题
*/
private String title;
/**
* 新闻类别 1:点播(视频),2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,
* 12:组件 13:音频 14:动态图文 15:动态视频
*/
private String type;
/**
* 中文端审核状态 1草稿 2矩阵号审核中 3矩阵号审核通过 4矩阵号审核不通过 5审核中 6审核通过 7审核不通过
* 8待主编审核 9主编审核通过 10主编审核不通过 11待敏感词检测 12敏感词检测命中 13敏感词检测未命中
* 14主频道主编审核中 15主频道主编审核通过 16主频道主编审核不通过 17:已终审 18:已撤稿
*/
private String zhAuditingStatus;
/**
* 中文端在线状态 34,上线 35下线
*/
private String zhOnlineStatus;
/**
* 视界 上线状态 1上线 2下线
*/
private String onlineStatus;
/**
* 视界 1草稿 2矩阵号审核中 3矩阵号审核通过 4矩阵号审核不通过 5审核中 6审核通过 7审核不通过
*/
private String auditingStatus;
/**
* 是否选送 0否 1策略自动选送 2手动选送
*/
private String selectedStatus;
/**
* 文章得分(范围:1~5)
*/
private String qualityScore;
/**
* 号主等级(范围:1~5)
*/
private String levelScore;
public String getAppStyle() {
return appStyle;
}
public void setAppStyle(String appStyle) {
this.appStyle = appStyle;
}
public EditContentBean getContent() {
return content;
}
public void setContent(EditContentBean content) {
this.content = content;
}
public List<EditContentExtBean> getContentExt() {
return contentExt;
}
public void setContentExt(List<EditContentExtBean> contentExt) {
this.contentExt = contentExt;
}
public List<EditContentPictureBean> getContentPictures() {
return contentPictures;
}
public void setContentPictures(List<EditContentPictureBean> contentPictures) {
this.contentPictures = contentPictures;
}
public List<VideoParams> getContentVideos() {
return contentVideos;
}
public void setContentVideos(List<VideoParams> contentVideos) {
this.contentVideos = contentVideos;
}
public List<EditContentTags> getContentTags() {
return contentTags;
}
public void setContentTags(List<EditContentTags> contentTags) {
this.contentTags = contentTags;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCreateUserId() {
return createUserId;
}
public void setCreateUserId(String createUserId) {
this.createUserId = createUserId;
}
public String getCreateUserName() {
return createUserName;
}
public void setCreateUserName(String createUserName) {
this.createUserName = createUserName;
}
public String getDeleted() {
return deleted;
}
public void setDeleted(String deleted) {
this.deleted = deleted;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getFirstPublishTime() {
return firstPublishTime;
}
public void setFirstPublishTime(String firstPublishTime) {
this.firstPublishTime = firstPublishTime;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public long getPublishTime() {
return publishTime;
}
public void setPublishTime(long publishTime) {
this.publishTime = publishTime;
}
public String getPublishType() {
return publishType;
}
public void setPublishType(String publishType) {
this.publishType = publishType;
}
public String getTenancy() {
return tenancy;
}
public void setTenancy(String tenancy) {
this.tenancy = tenancy;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getZhAuditingStatus() {
return zhAuditingStatus;
}
public void setZhAuditingStatus(String zhAuditingStatus) {
this.zhAuditingStatus = zhAuditingStatus;
}
public String getZhOnlineStatus() {
return zhOnlineStatus;
}
public void setZhOnlineStatus(String zhOnlineStatus) {
this.zhOnlineStatus = zhOnlineStatus;
}
public String getOnlineStatus() {
return onlineStatus;
}
public void setOnlineStatus(String onlineStatus) {
this.onlineStatus = onlineStatus;
}
public String getAuditingStatus() {
return auditingStatus;
}
public void setAuditingStatus(String auditingStatus) {
this.auditingStatus = auditingStatus;
}
public String getSelectedStatus() {
return selectedStatus;
}
public void setSelectedStatus(String selectedStatus) {
this.selectedStatus = selectedStatus;
}
public String getQualityScore() {
return qualityScore;
}
public void setQualityScore(String qualityScore) {
this.qualityScore = qualityScore;
}
public String getLevelScore() {
return levelScore;
}
public void setLevelScore(String levelScore) {
this.levelScore = levelScore;
}
public List<EditContentTxtBean> getContentTxt() {
return contentTxt;
}
public void setContentTxt(List<EditContentTxtBean> contentTxt) {
this.contentTxt = contentTxt;
}
}