ShyComments.java
9.04 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
package com.cnlive.shenhe.entity;
import java.util.Date;
import javax.persistence.*;
@Table(name = "shy_comments")
public class ShyComments {
@Id
private Integer id;
/**
* 评论内容
*/
private String comment_content;
/**
* 评论用户id
*/
private Integer comment_user_id;
/**
* 节目id
*/
private Integer program_id;
/**
* 评论的活动id
*/
private String activity_id;
/**
* 评论所属的平台
*/
private String platform;
/**
* 评论标题
*/
private String comment_title;
/**
* 评论时间
*/
private Date comment_time;
private Integer spid;
/**
* 应用id
*/
private String app_id;
/**
* 原文链接url
*/
private String comment_original_url;
/**
* 更新者
*/
private String updater;
/**
* 审核员
*/
private String auditor;
/**
* 回调函数
*/
private String callback;
/**
* 是否是热点 对应的就是优先级 : 0:全部 ,1:不是 ,2: 是
*/
private Boolean is_hot;
/**
* 拒绝理由
*/
private String msg;
/**
* 状态 0.未审核,1:已审核,2审核失败
*/
private Integer state;
/**
* 用户昵称
*/
private String comment_user_name;
/**
* 评论用户头像url
*/
private String comment_user_avatar;
/**
* 评论用户来源ip
*/
private String comment_user_ip;
private Date created_at;
private Date updated_at;
/**
* @return id
*/
public Integer getId() {
return id;
}
/**
* @param id
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取评论内容
*
* @return comment_content - 评论内容
*/
public String getComment_content() {
return comment_content;
}
/**
* 设置评论内容
*
* @param comment_content 评论内容
*/
public void setComment_content(String comment_content) {
this.comment_content = comment_content;
}
/**
* 获取评论用户id
*
* @return comment_user_id - 评论用户id
*/
public Integer getComment_user_id() {
return comment_user_id;
}
/**
* 设置评论用户id
*
* @param comment_user_id 评论用户id
*/
public void setComment_user_id(Integer comment_user_id) {
this.comment_user_id = comment_user_id;
}
/**
* 获取节目id
*
* @return program_id - 节目id
*/
public Integer getProgram_id() {
return program_id;
}
/**
* 设置节目id
*
* @param program_id 节目id
*/
public void setProgram_id(Integer program_id) {
this.program_id = program_id;
}
/**
* 获取评论的活动id
*
* @return activity_id - 评论的活动id
*/
public String getActivity_id() {
return activity_id;
}
/**
* 设置评论的活动id
*
* @param activity_id 评论的活动id
*/
public void setActivity_id(String activity_id) {
this.activity_id = activity_id;
}
/**
* 获取评论所属的平台
*
* @return platform - 评论所属的平台
*/
public String getPlatform() {
return platform;
}
/**
* 设置评论所属的平台
*
* @param platform 评论所属的平台
*/
public void setPlatform(String platform) {
this.platform = platform;
}
/**
* 获取评论标题
*
* @return comment_title - 评论标题
*/
public String getComment_title() {
return comment_title;
}
/**
* 设置评论标题
*
* @param comment_title 评论标题
*/
public void setComment_title(String comment_title) {
this.comment_title = comment_title;
}
/**
* 获取评论时间
*
* @return comment_time - 评论时间
*/
public Date getComment_time() {
return comment_time;
}
/**
* 设置评论时间
*
* @param comment_time 评论时间
*/
public void setComment_time(Date comment_time) {
this.comment_time = comment_time;
}
/**
* @return spid
*/
public Integer getSpid() {
return spid;
}
/**
* @param spid
*/
public void setSpid(Integer spid) {
this.spid = spid;
}
/**
* 获取应用id
*
* @return app_id - 应用id
*/
public String getApp_id() {
return app_id;
}
/**
* 设置应用id
*
* @param app_id 应用id
*/
public void setApp_id(String app_id) {
this.app_id = app_id;
}
/**
* 获取原文链接url
*
* @return comment_original_url - 原文链接url
*/
public String getComment_original_url() {
return comment_original_url;
}
/**
* 设置原文链接url
*
* @param comment_original_url 原文链接url
*/
public void setComment_original_url(String comment_original_url) {
this.comment_original_url = comment_original_url;
}
/**
* 获取更新者
*
* @return updater - 更新者
*/
public String getUpdater() {
return updater;
}
/**
* 设置更新者
*
* @param updater 更新者
*/
public void setUpdater(String updater) {
this.updater = updater;
}
/**
* 获取审核员
*
* @return auditor - 审核员
*/
public String getAuditor() {
return auditor;
}
/**
* 设置审核员
*
* @param auditor 审核员
*/
public void setAuditor(String auditor) {
this.auditor = auditor;
}
/**
* 获取回调函数
*
* @return callback - 回调函数
*/
public String getCallback() {
return callback;
}
/**
* 设置回调函数
*
* @param callback 回调函数
*/
public void setCallback(String callback) {
this.callback = callback;
}
/**
* 获取是否是热点 对应的就是优先级 : 0:全部 ,1:不是 ,2: 是
*
* @return is_hot - 是否是热点 对应的就是优先级 : 0:全部 ,1:不是 ,2: 是
*/
public Boolean getIs_hot() {
return is_hot;
}
/**
* 设置是否是热点 对应的就是优先级 : 0:全部 ,1:不是 ,2: 是
*
* @param is_hot 是否是热点 对应的就是优先级 : 0:全部 ,1:不是 ,2: 是
*/
public void setIs_hot(Boolean is_hot) {
this.is_hot = is_hot;
}
/**
* 获取拒绝理由
*
* @return msg - 拒绝理由
*/
public String getMsg() {
return msg;
}
/**
* 设置拒绝理由
*
* @param msg 拒绝理由
*/
public void setMsg(String msg) {
this.msg = msg;
}
/**
* 获取状态 0.未审核,1:已审核,2审核失败
*
* @return state - 状态 0.未审核,1:已审核,2审核失败
*/
public Integer getState() {
return state;
}
/**
* 设置状态 0.未审核,1:已审核,2审核失败
*
* @param state 状态 0.未审核,1:已审核,2审核失败
*/
public void setState(Integer state) {
this.state = state;
}
/**
* 获取用户昵称
*
* @return comment_user_name - 用户昵称
*/
public String getComment_user_name() {
return comment_user_name;
}
/**
* 设置用户昵称
*
* @param comment_user_name 用户昵称
*/
public void setComment_user_name(String comment_user_name) {
this.comment_user_name = comment_user_name;
}
/**
* 获取评论用户头像url
*
* @return comment_user_avatar - 评论用户头像url
*/
public String getComment_user_avatar() {
return comment_user_avatar;
}
/**
* 设置评论用户头像url
*
* @param comment_user_avatar 评论用户头像url
*/
public void setComment_user_avatar(String comment_user_avatar) {
this.comment_user_avatar = comment_user_avatar;
}
/**
* 获取评论用户来源ip
*
* @return comment_user_ip - 评论用户来源ip
*/
public String getComment_user_ip() {
return comment_user_ip;
}
/**
* 设置评论用户来源ip
*
* @param comment_user_ip 评论用户来源ip
*/
public void setComment_user_ip(String comment_user_ip) {
this.comment_user_ip = comment_user_ip;
}
/**
* @return created_at
*/
public Date getCreated_at() {
return created_at;
}
/**
* @param created_at
*/
public void setCreated_at(Date created_at) {
this.created_at = created_at;
}
/**
* @return updated_at
*/
public Date getUpdated_at() {
return updated_at;
}
/**
* @param updated_at
*/
public void setUpdated_at(Date updated_at) {
this.updated_at = updated_at;
}
}