ShyLiveapply.java
16.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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
package com.cnlive.shenhe.entity;
import java.util.Date;
import javax.persistence.*;
@Table(name = "shy_liveapply")
public class ShyLiveapply {
/**
* id
*/
@Id
private Integer id;
/**
* 直播活动id
*/
private String activity_id;
/**
* 直播频道id
*/
private String channel_id;
/**
* spId
*/
private Integer sp_id;
/**
* 直播发起人
*/
private String sender;
/**
* 联系方式
*/
private String mobile;
/**
* 直播发起单位
*/
private String organization;
/**
* 直播主题
*/
private String theme;
/**
* 直播类型
*/
private String live_type;
/**
* 预计开始时间
*/
private Date pre_start_time;
/**
* 预计结束时间
*/
private Date pre_end_time;
/**
* 商务模式:0免费 1收费
*/
private Integer business_model;
/**
* 内容属性:1商业类活动 0非商业活动
*/
private Integer content_property;
/**
* 要点报备:0品牌植入 1广告植入 2商品推销 3网家家独家麦标
*/
private String point_key;
/**
* 直播地点
*/
private String live_place;
/**
* 推流地址
*/
private String push_url;
/**
* 拉流地址
*/
private String pull_url;
/**
* 拉流来源
*/
private String pull_source;
/**
* 播出平台及通道:0网家家 1CNLive网站 2@TV互动电视
*/
private String platforms;
/**
* 回调地址
*/
private String callback;
/**
* 审核类型,1:免审,2:机审,3:人工审
*/
private Integer shenhe_type;
/**
* 领取状态。0:未领取;1:已领取
*/
private Integer receive;
/**
* 审核状态:0.未审核,1:已审核,2.拒绝
*/
private Integer shenhe_state;
/**
* 更新者
*/
private String updater;
/**
* 审核员
*/
private String auditor;
/**
* 审核信息
*/
private String shenhe_msg;
/**
* 邮件通知状态 1未通知 2已通知 3通知失败
*/
private Integer email_notice_state;
/**
* 邮件通知消息
*/
private String email_notice_msg;
/**
* 创建时间
*/
private Date created_at;
/**
* 更新时间
*/
private Date updated_at;
/**
* 内容简述
*/
private String simple_content;
@Transient
private String spid_desc;
/**
* 获取id
*
* @return id - id
*/
public Integer getId() {
return id;
}
/**
* 设置id
*
* @param id id
*/
public void setId(Integer id) {
this.id = 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;
}
/**
* 获取直播频道id
*
* @return channel_id - 直播频道id
*/
public String getChannel_id() {
return channel_id;
}
/**
* 设置直播频道id
*
* @param channel_id 直播频道id
*/
public void setChannel_id(String channel_id) {
this.channel_id = channel_id;
}
/**
* 获取spId
*
* @return sp_id - spId
*/
public Integer getSp_id() {
return sp_id;
}
/**
* 设置spId
*
* @param sp_id spId
*/
public void setSp_id(Integer sp_id) {
this.sp_id = sp_id;
}
/**
* 获取直播发起人
*
* @return sender - 直播发起人
*/
public String getSender() {
return sender;
}
/**
* 设置直播发起人
*
* @param sender 直播发起人
*/
public void setSender(String sender) {
this.sender = sender;
}
/**
* 获取联系方式
*
* @return mobile - 联系方式
*/
public String getMobile() {
return mobile;
}
/**
* 设置联系方式
*
* @param mobile 联系方式
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* 获取直播发起单位
*
* @return organization - 直播发起单位
*/
public String getOrganization() {
return organization;
}
/**
* 设置直播发起单位
*
* @param organization 直播发起单位
*/
public void setOrganization(String organization) {
this.organization = organization;
}
/**
* 获取直播主题
*
* @return theme - 直播主题
*/
public String getTheme() {
return theme;
}
/**
* 设置直播主题
*
* @param theme 直播主题
*/
public void setTheme(String theme) {
this.theme = theme;
}
/**
* 获取直播类型
*
* @return live_type - 直播类型
*/
public String getLive_type() {
return live_type;
}
/**
* 设置直播类型
*
* @param live_type 直播类型
*/
public void setLive_type(String live_type) {
this.live_type = live_type;
}
/**
* 获取预计开始时间
*
* @return pre_start_time - 预计开始时间
*/
public Date getPre_start_time() {
return pre_start_time;
}
/**
* 设置预计开始时间
*
* @param pre_start_time 预计开始时间
*/
public void setPre_start_time(Date pre_start_time) {
this.pre_start_time = pre_start_time;
}
/**
* 获取预计结束时间
*
* @return pre_end_time - 预计结束时间
*/
public Date getPre_end_time() {
return pre_end_time;
}
/**
* 设置预计结束时间
*
* @param pre_end_time 预计结束时间
*/
public void setPre_end_time(Date pre_end_time) {
this.pre_end_time = pre_end_time;
}
/**
* 获取商务模式:0免费 1收费
*
* @return business_model - 商务模式:0免费 1收费
*/
public Integer getBusiness_model() {
return business_model;
}
/**
* 设置商务模式:0免费 1收费
*
* @param business_model 商务模式:0免费 1收费
*/
public void setBusiness_model(Integer business_model) {
this.business_model = business_model;
}
/**
* 获取内容属性:1商业类活动 0非商业活动
*
* @return content_property - 内容属性:1商业类活动 0非商业活动
*/
public Integer getContent_property() {
return content_property;
}
/**
* 设置内容属性:1商业类活动 0非商业活动
*
* @param content_property 内容属性:1商业类活动 0非商业活动
*/
public void setContent_property(Integer content_property) {
this.content_property = content_property;
}
/**
* 获取要点报备:0品牌植入 1广告植入 2商品推销 3网家家独家麦标
*
* @return point_key - 要点报备:0品牌植入 1广告植入 2商品推销 3网家家独家麦标
*/
public String getPoint_key() {
return point_key;
}
/**
* 设置要点报备:0品牌植入 1广告植入 2商品推销 3网家家独家麦标
*
* @param point_key 要点报备:0品牌植入 1广告植入 2商品推销 3网家家独家麦标
*/
public void setPoint_key(String point_key) {
this.point_key = point_key;
}
/**
* 获取直播地点
*
* @return live_place - 直播地点
*/
public String getLive_place() {
return live_place;
}
/**
* 设置直播地点
*
* @param live_place 直播地点
*/
public void setLive_place(String live_place) {
this.live_place = live_place;
}
/**
* 获取推流地址
*
* @return push_url - 推流地址
*/
public String getPush_url() {
return push_url;
}
/**
* 设置推流地址
*
* @param push_url 推流地址
*/
public void setPush_url(String push_url) {
this.push_url = push_url;
}
/**
* 获取拉流地址
*
* @return pull_url - 拉流地址
*/
public String getPull_url() {
return pull_url;
}
/**
* 设置拉流地址
*
* @param pull_url 拉流地址
*/
public void setPull_url(String pull_url) {
this.pull_url = pull_url;
}
/**
* 获取拉流来源
*
* @return pull_source - 拉流来源
*/
public String getPull_source() {
return pull_source;
}
/**
* 设置拉流来源
*
* @param pull_source 拉流来源
*/
public void setPull_source(String pull_source) {
this.pull_source = pull_source;
}
/**
* 获取播出平台及通道:0网家家 1CNLive网站 2@TV互动电视
*
* @return platforms - 播出平台及通道:0网家家 1CNLive网站 2@TV互动电视
*/
public String getPlatforms() {
return platforms;
}
/**
* 设置播出平台及通道:0网家家 1CNLive网站 2@TV互动电视
*
* @param platforms 播出平台及通道:0网家家 1CNLive网站 2@TV互动电视
*/
public void setPlatforms(String platforms) {
this.platforms = platforms;
}
/**
* 获取回调地址
*
* @return callback - 回调地址
*/
public String getCallback() {
return callback;
}
/**
* 设置回调地址
*
* @param callback 回调地址
*/
public void setCallback(String callback) {
this.callback = callback;
}
/**
* 获取审核类型,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;
}
/**
* 获取领取状态。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;
}
/**
* 获取审核状态:0.未审核,1:已审核,2.拒绝
*
* @return shenhe_state - 审核状态:0.未审核,1:已审核,2.拒绝
*/
public Integer getShenhe_state() {
return shenhe_state;
}
/**
* 设置审核状态:0.未审核,1:已审核,2.拒绝
*
* @param shenhe_state 审核状态:0.未审核,1:已审核,2.拒绝
*/
public void setShenhe_state(Integer shenhe_state) {
this.shenhe_state = shenhe_state;
}
/**
* 获取更新者
*
* @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 shenhe_msg - 审核信息
*/
public String getShenhe_msg() {
return shenhe_msg;
}
/**
* 设置审核信息
*
* @param shenhe_msg 审核信息
*/
public void setShenhe_msg(String shenhe_msg) {
this.shenhe_msg = shenhe_msg;
}
/**
* 获取邮件通知状态 1未通知 2已通知 3通知失败
*
* @return email_notice_state - 邮件通知状态 1未通知 2已通知 3通知失败
*/
public Integer getEmail_notice_state() {
return email_notice_state;
}
/**
* 设置邮件通知状态 1未通知 2已通知 3通知失败
*
* @param email_notice_state 邮件通知状态 1未通知 2已通知 3通知失败
*/
public void setEmail_notice_state(Integer email_notice_state) {
this.email_notice_state = email_notice_state;
}
/**
* 获取邮件通知消息
*
* @return email_notice_msg - 邮件通知消息
*/
public String getEmail_notice_msg() {
return email_notice_msg;
}
/**
* 设置邮件通知消息
*
* @param email_notice_msg 邮件通知消息
*/
public void setEmail_notice_msg(String email_notice_msg) {
this.email_notice_msg = email_notice_msg;
}
/**
* 获取创建时间
*
* @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;
}
/**
* 获取内容简述
*
* @return simple_content - 内容简述
*/
public String getSimple_content() {
return simple_content;
}
/**
* 设置内容简述
*
* @param simple_content 内容简述
*/
public void setSimple_content(String simple_content) {
this.simple_content = simple_content;
}
public String getSpid_desc() {
return spid_desc;
}
public void setSpid_desc(String spid_desc) {
this.spid_desc = spid_desc;
}
@Override
public String toString() {
return "ShyLiveapply{" +
"id=" + id +
", activity_id='" + activity_id + '\'' +
", channel_id='" + channel_id + '\'' +
", sp_id=" + sp_id +
", sender='" + sender + '\'' +
", mobile='" + mobile + '\'' +
", organization='" + organization + '\'' +
", theme='" + theme + '\'' +
", live_type='" + live_type + '\'' +
", pre_start_time=" + pre_start_time +
", pre_end_time=" + pre_end_time +
", business_model=" + business_model +
", content_property=" + content_property +
", point_key='" + point_key + '\'' +
", live_place='" + live_place + '\'' +
", push_url='" + push_url + '\'' +
", pull_url='" + pull_url + '\'' +
", pull_source='" + pull_source + '\'' +
", platforms='" + platforms + '\'' +
", callback='" + callback + '\'' +
", shenhe_type=" + shenhe_type +
", receive=" + receive +
", shenhe_state=" + shenhe_state +
", updater='" + updater + '\'' +
", auditor='" + auditor + '\'' +
", shenhe_msg='" + shenhe_msg + '\'' +
", email_notice_state=" + email_notice_state +
", email_notice_msg='" + email_notice_msg + '\'' +
", created_at=" + created_at +
", updated_at=" + updated_at +
", simple_content='" + simple_content + '\'' +
", spid_desc='" + spid_desc + '\'' +
'}';
}
}