ContentIdsBean.java
681 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
package com.wd.foundation.bean.response;
public class ContentIdsBean {
String contentId;
/**
* 关系id
*/
String relId;
/**
* 关系类型;1.频道关系;2.专题关系
*/
String relType;
public void setContentId(String contentId) {
this.contentId = contentId;
}
public void setRelId(String relId) {
this.relId = relId;
}
public void setRelType(String relType) {
this.relType = relType;
}
public String getRelId() {
return relId;
}
public String getRelType() {
return relType;
}
public String getContentId() {
return contentId;
}
}