SubmitMessageDetailBean.java
2.54 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
package com.wd.foundation.bean.convenience;
import com.wd.foundation.bean.base.BaseBean;
/**
* 留言数据明细
* @author baozhaoxin
* @version [V1.0.0, 2023/9/19]
* @since V1.0.0
*/
public class SubmitMessageDetailBean extends BaseBean {
/**
* 留言所属板块ID
*/
private String fid;
/**
* 留言分类
*/
private String typeId;
/**
* 留言领域
*/
private String domainId;
/**
* 留言标题
*/
private String title;
/**
* 留言内容
*/
private String content;
/**
* 隐藏信息
*/
private String info;
/**
* 留言级别 0地方 1部委
*/
private String position;
/**
* 留言发生地,例:北京市朝阳区人人民日报社9号楼(人民科技)
*/
private String threadPlace;
/**
* 留言发生地是否公开
*/
private String threadPlacePublic;
/**
* 公开标记 :公开标记 0:非公开 1:公开;默认1
*/
private int publicState = 1;
public String getFid() {
return fid;
}
public void setFid(String fid) {
this.fid = fid;
}
public String getTypeId() {
return typeId;
}
public void setTypeId(String typeId) {
this.typeId = typeId;
}
public String getDomainId() {
return domainId;
}
public void setDomainId(String domainId) {
this.domainId = domainId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public String getThreadPlace() {
return threadPlace;
}
public void setThreadPlace(String threadPlace) {
this.threadPlace = threadPlace;
}
public String getThreadPlacePublic() {
return threadPlacePublic;
}
public void setThreadPlacePublic(String threadPlacePublic) {
this.threadPlacePublic = threadPlacePublic;
}
public int getPublicState() {
return publicState;
}
public void setPublicState(int publicState) {
this.publicState = publicState;
}
}