SimpleContentBean.java
913 Bytes
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
package com.wd.foundation.bean.request;
import com.wd.foundation.bean.base.BaseBean;
/**
* 描述:只有两个字段
*
* @author : lvjinhui
* @since: 2023/11/16
*/
public class SimpleContentBean extends BaseBean {
public SimpleContentBean(String contentId, int contentType) {
this.contentId = contentId;
this.contentType = contentType;
}
/**
* 稿件ID
*/
private String contentId;
/**
* 稿件类型 1-图文、5-图集、6-视频、10-直播(回放),7是专题,12 h5
*/
private int contentType;
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
public int getContentType() {
return contentType;
}
public void setContentType(int contentType) {
this.contentType = contentType;
}
}