SystemNotice.java
5.33 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package com.bjivt.entity.showtime;
import java.io.Serializable;
import java.util.Date;
public class SystemNotice implements Serializable {
/**
*
* 表字段 : tbl_system_notice.id
*/
private Integer id;
/**
* 标题
* 表字段 : tbl_system_notice.title
*/
private String title;
/**
* 内容
* 表字段 : tbl_system_notice.content
*/
private String content;
/**
* 间隔
* 表字段 : tbl_system_notice.interval_time
*/
private Integer intervalTime;
/**
* 操作类型:1:一次性;2:循环
* 表字段 : tbl_system_notice.action
*/
private Integer action;
/**
* 分类:1:主播;2:所有用户;3:除主播外的用户
* 表字段 : tbl_system_notice.type
*/
private Integer type;
/**
* 创建日期
* 表字段 : tbl_system_notice.create_time
*/
private Date createTime;
/**
* 操作人
* 表字段 : tbl_system_notice.manager_id
*/
private Integer managerId;
/**
* 是否已发布
*/
private Boolean isPublish;
private static final long serialVersionUID = 1L;
/**
* 获取:
* 表字段:tbl_system_notice.id
*
* @return tbl_system_notice.id:
*/
public Integer getId() {
return id;
}
/**
* 设置:
* 表字段:tbl_system_notice.id
*
* @param id
* tbl_system_notice.id:
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取:标题
* 表字段:tbl_system_notice.title
*
* @return tbl_system_notice.title:标题
*/
public String getTitle() {
return title;
}
/**
* 设置:标题
* 表字段:tbl_system_notice.title
*
* @param title
* tbl_system_notice.title:标题
*/
public void setTitle(String title) {
this.title = title == null ? null : title.trim();
}
/**
* 获取:内容
* 表字段:tbl_system_notice.content
*
* @return tbl_system_notice.content:内容
*/
public String getContent() {
return content;
}
/**
* 设置:内容
* 表字段:tbl_system_notice.content
*
* @param content
* tbl_system_notice.content:内容
*/
public void setContent(String content) {
this.content = content == null ? null : content.trim();
}
/**
* 获取:间隔
* 表字段:tbl_system_notice.interval_time
*
* @return tbl_system_notice.interval_time:间隔
*/
public Integer getIntervalTime() {
return intervalTime;
}
/**
* 设置:间隔
* 表字段:tbl_system_notice.interval_time
*
* @param intervalTime
* tbl_system_notice.interval_time:间隔
*/
public void setIntervalTime(Integer intervalTime) {
this.intervalTime = intervalTime;
}
/**
* 获取:操作类型:1:一次性;2:循环
* 表字段:tbl_system_notice.action
*
* @return tbl_system_notice.action:操作类型:1:一次性;2:循环
*/
public Integer getAction() {
return action;
}
/**
* 设置:操作类型:1:一次性;2:循环
* 表字段:tbl_system_notice.action
*
* @param action
* tbl_system_notice.action:操作类型:1:一次性;2:循环
*/
public void setAction(Integer action) {
this.action = action;
}
/**
* 获取:分类:1:主播;2:所有用户;3:除主播外的用户
* 表字段:tbl_system_notice.type
*
* @return tbl_system_notice.type:分类:1:主播;2:所有用户;3:除主播外的用户
*/
public Integer getType() {
return type;
}
/**
* 设置:分类:1:主播;2:所有用户;3:除主播外的用户
* 表字段:tbl_system_notice.type
*
* @param type
* tbl_system_notice.type:分类:1:主播;2:所有用户;3:除主播外的用户
*/
public void setType(Integer type) {
this.type = type;
}
/**
* 获取:创建日期
* 表字段:tbl_system_notice.create_time
*
* @return tbl_system_notice.create_time:创建日期
*/
public Date getCreateTime() {
return createTime;
}
/**
* 设置:创建日期
* 表字段:tbl_system_notice.create_time
*
* @param createTime
* tbl_system_notice.create_time:创建日期
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
/**
* 获取:操作人
* 表字段:tbl_system_notice.manager_id
*
* @return tbl_system_notice.manager_id:操作人
*/
public Integer getManagerId() {
return managerId;
}
/**
* 设置:操作人
* 表字段:tbl_system_notice.manager_id
*
* @param managerId
* tbl_system_notice.manager_id:操作人
*/
public void setManagerId(Integer managerId) {
this.managerId = managerId;
}
public Boolean getIsPublish() {
return isPublish;
}
public void setIsPublish(Boolean isPublish) {
this.isPublish = isPublish;
}
}