ShyComments.java
13.1 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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
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 String program_id;
/**
* 评论的活动id
*/
private String activity_id;
/**
* 评论所属的平台
*/
private String platform;
/**
* 评论标题
*/
private String comment_title;
/**
* 评论时间
*/
private Date comment_time;
/**
* 评论类型,topic:话题
*/
private String type;
/**
* 评论的级别
*/
private Integer level;
private Integer spid;
/**
* 应用id
*/
private String app_id;
/**
* 原文链接url
*/
private String comment_original_url;
/**
* 审核类型,1:免审,2:机审,3:人工审
*/
private Integer shenhe_type;
/**
* 更新者
*/
private String updater;
/**
* 审核员id
*/
private String auditor_id;
/**
* 回调函数
*/
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;
/**
* 领取状态。0:未领取;1:已领取
*/
private Integer receive;
/**
* 领取人id
*/
private String receive_user_id;
/**
* @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 String getProgram_id() {
return program_id;
}
/**
* 设置节目id
*
* @param program_id 节目id
*/
public void setProgram_id(String 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;
}
/**
* 获取评论类型,topic:话题
*
* @return type - 评论类型,topic:话题
*/
public String getType() {
return type;
}
/**
* 设置评论类型,topic:话题
*
* @param type 评论类型,topic:话题
*/
public void setType(String type) {
this.type = type;
}
/**
* 获取评论的级别
*
* @return level - 评论的级别
*/
public Integer getLevel() {
return level;
}
/**
* 设置评论的级别
*
* @param level 评论的级别
*/
public void setLevel(Integer level) {
this.level = level;
}
/**
* @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;
}
@Transient
private String spid_desc;
/**
* 获取审核类型,1:免审,2:机审,3:人工审
*
* @return shenhe_type - 审核类型,1:免审,2:机审,3:人工审
*/
public Integer getShenhe_type() {
return shenhe_type;
}
/**
* 设置审核类型,1:免审,2:机审,3:人工审
*
* @param shenhe_type 审核类型,1:免审,2:机审,3:人工审
*/
public void setShenhe_type(Integer shenhe_type) {
this.shenhe_type = shenhe_type;
}
/**
* 获取更新者
*
* @return updater - 更新者
*/
public String getUpdater() {
return updater;
}
/**
* 设置更新者
*
* @param updater 更新者
*/
public void setUpdater(String updater) {
this.updater = updater;
}
/**
* 获取审核员id
*
* @return auditor_id - 审核员id
*/
public String getAuditor_id() {
return auditor_id;
}
/**
* 设置审核员id
*
* @param auditor_id 审核员id
*/
public void setAuditor_id(String auditor_id) {
this.auditor_id = auditor_id;
}
/**
* 获取回调函数
*
* @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;
}
/**
* 获取领取状态。0:未领取;1:已领取
*
* @return receive - 领取状态。0:未领取;1:已领取
*/
public Integer getReceive() {
return receive;
}
/**
* 设置领取状态。0:未领取;1:已领取
*
* @param receive 领取状态。0:未领取;1:已领取
*/
public void setReceive(Integer receive) {
this.receive = receive;
}
/**
* 获取领取人id
*
* @return receive_user_id - 领取人id
*/
public String getReceive_user_id() {
return receive_user_id;
}
/**
* 设置领取人id
*
* @param receive_user_id 领取人id
*/
public void setReceive_user_id(String receive_user_id) {
this.receive_user_id = receive_user_id;
}
public String getSpid_desc() {
return spid_desc;
}
public void setSpid_desc(String spid_desc) {
this.spid_desc = spid_desc;
}
@Override
public String toString() {
return "ShyComments{" +
"id=" + id +
", comment_content='" + comment_content + '\'' +
", comment_user_id=" + comment_user_id +
", program_id='" + program_id + '\'' +
", activity_id='" + activity_id + '\'' +
", platform='" + platform + '\'' +
", comment_title='" + comment_title + '\'' +
", comment_time=" + comment_time +
", type='" + type + '\'' +
", level=" + level +
", spid=" + spid +
", app_id='" + app_id + '\'' +
", comment_original_url='" + comment_original_url + '\'' +
", shenhe_type=" + shenhe_type +
", updater='" + updater + '\'' +
", auditor_id='" + auditor_id + '\'' +
", callback='" + callback + '\'' +
", is_hot=" + is_hot +
", msg='" + msg + '\'' +
", state=" + state +
", comment_user_name='" + comment_user_name + '\'' +
", comment_user_avatar='" + comment_user_avatar + '\'' +
", comment_user_ip='" + comment_user_ip + '\'' +
", created_at=" + created_at +
", updated_at=" + updated_at +
", receive=" + receive +
", receive_user_id='" + receive_user_id + '\'' +
", spid_desc='" + spid_desc + '\'' +
'}';
}
}