RelContentBean.java
1.2 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
package com.wd.foundation.bean.response;
import com.wd.foundation.bean.base.BaseBean;
/**
* 含关系内容bean
* @author baozhaoxin
* @version [V1.0.0, 2024/8/15]
* @since V1.0.0
*/
public class RelContentBean extends BaseBean {
/**
* 对象id
*/
private String contentId;
/**
* 1:点播,2:直播,5:专题,8:图文,9:组图,13:音频,14动态图文,15动态视频,16问政
*/
private String contentType;
/**
* 关系id
*/
private String relId;
/**
* 关系类型;1.频道关系;2.专题关系;
*/
private String relType;
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public String getRelId() {
return relId;
}
public void setRelId(String relId) {
this.relId = relId;
}
public String getRelType() {
return relType;
}
public void setRelType(String relType) {
this.relType = relType;
}
}