ArticleParamsBean.java
944 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
package com.wd.foundation.bean.custom;
import com.wd.foundation.bean.base.BaseBean;
public class ArticleParamsBean extends BaseBean {
private String contentId;
private String contentType;//内容类型
private String relId;//关系id
private String relType;//关系类型;1.频道关系;2.专题关系;
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
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;
}
}