admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
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
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
package com.yeshi.buwan.videos.iqiyi.entity;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.List;
 
@Document(collection = "iqiyiAlbum")
public class IqiyiAlbum2 {
 
    //按照order字段排序
    public final static int SORT_ORDER=1;
    //按period字段排序
    public final static int SORT_PERIOD=2;
 
    public final static int SORT_ID=3;
 
    /**
     * id : 9000000001266601
     * featureAlbumId : 0
     * name : 温暖青春
     * channelId : 2
     * bossStatus : 0
     * payMark : 0
     * url : http://www.iqiyi.com/a_2ffkws2u7r9.html?vfm=m_330_bwap
     * h5Url : http://m.iqiyi.com/a_2ffkws2u7r9.html?vfm=m_330_bwap
     * imageUrl : http://pic6.iqiyipic.com/image/20200730/60/5a/a_100416455_m_601_m3.jpg
     * firstVideo : {"id":9000000116626100,"name":"温暖青春第1集","url":"http://www.iqiyi.com/v_2ffkwy7y3mg.html?vfm=m_330_bwap","h5Url":"http://m.iqiyi.com/v_2ffkwy7y3mg.html?vfm=m_330_bwap","period":"20200805","order":1,"vid":"bdb2109478bab11e90743e933d92c882","bossStatus":0,"duration":1462}
     * latestVideo : {"id":9000000116626300,"name":"温暖青春第12集","url":"http://www.iqiyi.com/v_2ffkwy7y39s.html?vfm=m_330_bwap","h5Url":"http://m.iqiyi.com/v_2ffkwy7y39s.html?vfm=m_330_bwap","period":"20200805","order":12,"vid":"b421c48ee13e7c87afcc08433d059233","bossStatus":0,"duration":1428}
     * contentType : 1
     * videoCount : 12
     * period : 20200805
     * exclusiveStatus : 0
     * selfProduce : 0
     * is1080p : 0
     * mainId : -1
     * focus : 青春一定要有温暖感动
     * keyword : 温暖青春
     * subTitle : 温暖青春
     * shortTitle : 温暖青春
     * aliases :
     * season : 0
     * edition :
     * updateStrategy :
     * desc : 如今独立高冷的都市精英女白领方朗,内心深处却隐藏着童年永远的伤痛。在工厂大火中意外故去的父亲,同在现场却最终安全脱身的继母,曾和自己争抢过上大学名额,毫无血缘关系的弟弟,即使多年过去,仍如一块巨石,沉默盘桓在心底。 她以为买下了自己的房子,有了真心的爱人,往后便是全新的生活,可这时,继母的一场重病却打破了一切平静。弟弟柳晨的恳求,恋人周俊峰的开解,让她决定回老家探望继母,而这趟旅程,却牵扯出了诸多过往不为人知的真相。而一个又一个与她有着千丝万缕关联的人们,属于每个家庭的悲欢离合,也就此拉开了序幕……
     * initialIssueTime : 2020-07-29 17:02:50
     * updateTime : 2020-08-28 17:00:04
     * crStartDate :
     * crEndDate :
     * areas : 内地
     * language :
     * tag : 家庭剧,剧情,都市,网剧,爱情
     * directors : 孙新发
     * producers :
     * hosts :
     * mainCharacters : 李龙(演员),李梦娜
     * threeCategoryNames : 内地,家庭剧,剧情,都市,网剧,爱情
     * copyrightOwners :
     * subsites :
     * tvQipuIds : [9000000116626100,9000000116625100,9000000116625600,9000000116625500,9000000116625700,9000000116625300,9000000116625000,9000000116625400,9000000116625800,9000000116625900,9000000116626000,9000000116626300]
     * threeCategories : [{"id":15,"name":"内地","subType":1,"subCtgName":"地区"},{"id":1654,"name":"家庭剧","subType":2,"subCtgName":"类型"},{"id":24063,"name":"剧情","subType":2,"subCtgName":"类型"},{"id":24064,"name":"都市","subType":2,"subCtgName":"类型"},{"id":24065,"name":"网剧","subType":2,"subCtgName":"类型"},{"id":30871,"name":"爱情","subType":2,"subCtgName":"类型"}]
     * contributors : [{"type":8,"name":"李龙(演员)","roleName":"李大伟"},{"type":8,"name":"李梦娜","roleName":"郑云璐"}]
     * playControls : [{"platformId":14,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":5,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":6,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":31,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":16,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":21,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":34,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":28,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":9,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":2,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":7,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":19,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":15,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":29,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":8,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":27,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":3,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":22,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":50,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":18,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":10,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":1,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":4,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":12,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":11,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":17,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":32,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":30,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":20,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2},{"platformId":13,"downloadAllowed":1,"cooperationAllowed":1,"availableStatus":1,"twAvailableStatus":2}]
     * chargeControls :
     * effect : 1
     * memberDownloadableOnly : 0
     * order : -1
     * beginTime : -1
     * endTime : -1
     * duration : -1
     * appAddress :
     * commonSwf :
     * isDolby : -1
     * panorama :
     * sourceAlbum : false
     * pageStatus : 1
     * mediumStatus : 1
     * supportDrm : false
     * rugc : 0
     * solo : 0
     * unlockedBusinessType : -1
     * statistics : {"id":9000000001266601,"hot":1197,"score":7.5}
     */
 
    @Id
    private long id;//视频ID
    @Indexed
    private long featureAlbumId;//所属专辑ID,大于0说明是视频,等于0为专辑
    private String name;//专辑名称或视频名称
    private int channelId;//频道 ID
    private int bossStatus;//是否付费
    private int payMark;//角标 0: 无角标; 1: VIP; 2: 付费点播;3:点播券;4:网球 VIP; 5: 网球付费点播; 6:网球点播券;7: FUN会员;
    private String url;//专辑或视频的 PC 地址
    private String h5Url;//
    private String imageUrl;//图片地址
    private VideoBean firstVideo;//表示第一集视频相关信息
    private VideoBean latestVideo;//表示最新一集视频相关信息
    @Indexed
    private int contentType;//1:正片;2:特辑;3:预告片;4:片花;5:花絮;6:宣传片;7:片段;8-25:其他
    private int videoCount;//专辑总集数 综艺类型的数据该字段固定为 0
    private String period;//专辑发行时间 格式:yyyyMMdd
    private int exclusiveStatus;//是否独播 0:非独播;1:独播;
    private int selfProduce;//是否自制剧 0:非自制;1 自制
    private int is1080p;//是否支持 1080P 0:不支持;1:支持;
    private long mainId;//主发专辑 ID -1 表示本专辑或视频是非多发的数据
    private String focus;//一句话推荐
    private String keyword;//关键词
    private String subTitle;//副标题
    private String shortTitle;//短标题
    private String aliases;//专辑别名
    private int season;//季
    private String edition;//版本
    private String updateStrategy;//更新策略
    private String desc;//描述
    private String initialIssueTime;//首次发布时间
    private String updateTime;//更新时间
    private String crStartDate;//版权开始时间
    private String crEndDate;//版权结束时间
    private String areas;//发行地
    private String language;//语言
    private String tag;//标签类型
    private String directors;//导演
    private String producers;//制片人
    private String hosts;//主持人
    private String mainCharacters;//主角
    private String threeCategoryNames;//三级分类名称
    private CopyrightOwnersBean copyrightOwners;//版权方信息
//    private String subsites;
    //    private String chargeControls;
    private int effect;//专辑或视频是否有效
    private int memberDownloadableOnly;
    private int order;//视频播放顺序
    private int beginTime;
    private int endTime;
    private int duration;//视频播放时长,单位秒
    private String appAddress;//appAddress
    private String commonSwf;
    private int isDolby;
    private PanoramaBean panorama;
    private boolean sourceAlbum;//是否综艺类型 false: 否(一集一集的聚合);true:是;(一期一期的聚合)
    private int pageStatus;//页面状态是否有效
    private int mediumStatus;//是否物理逻辑有效
    private boolean supportDrm;//是否支持 DRM ,true:支持;false:不支持;当该字段值为 true 时表示是版权保护的片子在 PC 和 H5 端不能播放
    private int rugc;//是否 UGC 0:不是;1:是;
    private int solo;//是否单视频 0:不是;1:是;
    private int unlockedBusinessType;
    private StatisticsBean statistics;
    private List<Long> tvQipuIds;
    private List<ThreeCategoriesBean> threeCategories;
    private List<ContributorsBean> contributors;
    private List<PlayControlsBean> playControls;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public long getFeatureAlbumId() {
        return featureAlbumId;
    }
 
    public void setFeatureAlbumId(long featureAlbumId) {
        this.featureAlbumId = featureAlbumId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public int getChannelId() {
        return channelId;
    }
 
    public void setChannelId(int channelId) {
        this.channelId = channelId;
    }
 
    public int getBossStatus() {
        return bossStatus;
    }
 
    public void setBossStatus(int bossStatus) {
        this.bossStatus = bossStatus;
    }
 
    public int getPayMark() {
        return payMark;
    }
 
    public void setPayMark(int payMark) {
        this.payMark = payMark;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getH5Url() {
        return h5Url;
    }
 
    public void setH5Url(String h5Url) {
        this.h5Url = h5Url;
    }
 
    public String getImageUrl() {
        return imageUrl;
    }
 
    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }
 
    public VideoBean getFirstVideo() {
        return firstVideo;
    }
 
    public void setFirstVideo(VideoBean firstVideo) {
        this.firstVideo = firstVideo;
    }
 
    public VideoBean getLatestVideo() {
        return latestVideo;
    }
 
    public void setLatestVideo(VideoBean latestVideo) {
        this.latestVideo = latestVideo;
    }
 
    public int getContentType() {
        return contentType;
    }
 
    public void setContentType(int contentType) {
        this.contentType = contentType;
    }
 
    public int getVideoCount() {
        return videoCount;
    }
 
    public void setVideoCount(int videoCount) {
        this.videoCount = videoCount;
    }
 
    public String getPeriod() {
        return period;
    }
 
    public void setPeriod(String period) {
        this.period = period;
    }
 
    public int getExclusiveStatus() {
        return exclusiveStatus;
    }
 
    public void setExclusiveStatus(int exclusiveStatus) {
        this.exclusiveStatus = exclusiveStatus;
    }
 
    public int getSelfProduce() {
        return selfProduce;
    }
 
    public void setSelfProduce(int selfProduce) {
        this.selfProduce = selfProduce;
    }
 
    public int getIs1080p() {
        return is1080p;
    }
 
    public void setIs1080p(int is1080p) {
        this.is1080p = is1080p;
    }
 
    public long getMainId() {
        return mainId;
    }
 
    public void setMainId(long mainId) {
        this.mainId = mainId;
    }
 
    public String getFocus() {
        return focus;
    }
 
    public void setFocus(String focus) {
        this.focus = focus;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public String getSubTitle() {
        return subTitle;
    }
 
    public void setSubTitle(String subTitle) {
        this.subTitle = subTitle;
    }
 
    public String getShortTitle() {
        return shortTitle;
    }
 
    public void setShortTitle(String shortTitle) {
        this.shortTitle = shortTitle;
    }
 
    public String getAliases() {
        return aliases;
    }
 
    public void setAliases(String aliases) {
        this.aliases = aliases;
    }
 
    public int getSeason() {
        return season;
    }
 
    public void setSeason(int season) {
        this.season = season;
    }
 
    public String getEdition() {
        return edition;
    }
 
    public void setEdition(String edition) {
        this.edition = edition;
    }
 
    public String getUpdateStrategy() {
        return updateStrategy;
    }
 
    public void setUpdateStrategy(String updateStrategy) {
        this.updateStrategy = updateStrategy;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public String getInitialIssueTime() {
        return initialIssueTime;
    }
 
    public void setInitialIssueTime(String initialIssueTime) {
        this.initialIssueTime = initialIssueTime;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getCrStartDate() {
        return crStartDate;
    }
 
    public void setCrStartDate(String crStartDate) {
        this.crStartDate = crStartDate;
    }
 
    public String getCrEndDate() {
        return crEndDate;
    }
 
    public void setCrEndDate(String crEndDate) {
        this.crEndDate = crEndDate;
    }
 
    public String getAreas() {
        return areas;
    }
 
    public void setAreas(String areas) {
        this.areas = areas;
    }
 
    public String getLanguage() {
        return language;
    }
 
    public void setLanguage(String language) {
        this.language = language;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getDirectors() {
        return directors;
    }
 
    public void setDirectors(String directors) {
        this.directors = directors;
    }
 
    public String getProducers() {
        return producers;
    }
 
    public void setProducers(String producers) {
        this.producers = producers;
    }
 
    public String getHosts() {
        return hosts;
    }
 
    public void setHosts(String hosts) {
        this.hosts = hosts;
    }
 
    public String getMainCharacters() {
        return mainCharacters;
    }
 
    public void setMainCharacters(String mainCharacters) {
        this.mainCharacters = mainCharacters;
    }
 
    public String getThreeCategoryNames() {
        return threeCategoryNames;
    }
 
    public void setThreeCategoryNames(String threeCategoryNames) {
        this.threeCategoryNames = threeCategoryNames;
    }
 
    public CopyrightOwnersBean getCopyrightOwners() {
        return copyrightOwners;
    }
 
    public void setCopyrightOwners(CopyrightOwnersBean copyrightOwners) {
        this.copyrightOwners = copyrightOwners;
    }
 
//    public String getSubsites() {
//        return subsites;
//    }
//
//    public void setSubsites(String subsites) {
//        this.subsites = subsites;
//    }
 
//    public String getChargeControls() {
//        return chargeControls;
//    }
//
//    public void setChargeControls(String chargeControls) {
//        this.chargeControls = chargeControls;
//    }
 
    public int getEffect() {
        return effect;
    }
 
    public void setEffect(int effect) {
        this.effect = effect;
    }
 
    public int getMemberDownloadableOnly() {
        return memberDownloadableOnly;
    }
 
    public void setMemberDownloadableOnly(int memberDownloadableOnly) {
        this.memberDownloadableOnly = memberDownloadableOnly;
    }
 
    public int getOrder() {
        return order;
    }
 
    public void setOrder(int order) {
        this.order = order;
    }
 
    public int getBeginTime() {
        return beginTime;
    }
 
    public void setBeginTime(int beginTime) {
        this.beginTime = beginTime;
    }
 
    public int getEndTime() {
        return endTime;
    }
 
    public void setEndTime(int endTime) {
        this.endTime = endTime;
    }
 
    public int getDuration() {
        return duration;
    }
 
    public void setDuration(int duration) {
        this.duration = duration;
    }
 
    public String getAppAddress() {
        return appAddress;
    }
 
    public void setAppAddress(String appAddress) {
        this.appAddress = appAddress;
    }
 
    public String getCommonSwf() {
        return commonSwf;
    }
 
    public void setCommonSwf(String commonSwf) {
        this.commonSwf = commonSwf;
    }
 
    public int getIsDolby() {
        return isDolby;
    }
 
    public void setIsDolby(int isDolby) {
        this.isDolby = isDolby;
    }
 
    public PanoramaBean getPanorama() {
        return panorama;
    }
 
    public void setPanorama(PanoramaBean panorama) {
        this.panorama = panorama;
    }
 
    public boolean isSourceAlbum() {
        return sourceAlbum;
    }
 
    public void setSourceAlbum(boolean sourceAlbum) {
        this.sourceAlbum = sourceAlbum;
    }
 
    public int getPageStatus() {
        return pageStatus;
    }
 
    public void setPageStatus(int pageStatus) {
        this.pageStatus = pageStatus;
    }
 
    public int getMediumStatus() {
        return mediumStatus;
    }
 
    public void setMediumStatus(int mediumStatus) {
        this.mediumStatus = mediumStatus;
    }
 
    public boolean isSupportDrm() {
        return supportDrm;
    }
 
    public void setSupportDrm(boolean supportDrm) {
        this.supportDrm = supportDrm;
    }
 
    public int getRugc() {
        return rugc;
    }
 
    public void setRugc(int rugc) {
        this.rugc = rugc;
    }
 
    public int getSolo() {
        return solo;
    }
 
    public void setSolo(int solo) {
        this.solo = solo;
    }
 
    public int getUnlockedBusinessType() {
        return unlockedBusinessType;
    }
 
    public void setUnlockedBusinessType(int unlockedBusinessType) {
        this.unlockedBusinessType = unlockedBusinessType;
    }
 
    public StatisticsBean getStatistics() {
        return statistics;
    }
 
    public void setStatistics(StatisticsBean statistics) {
        this.statistics = statistics;
    }
 
    public List<Long> getTvQipuIds() {
        return tvQipuIds;
    }
 
    public void setTvQipuIds(List<Long> tvQipuIds) {
        this.tvQipuIds = tvQipuIds;
    }
 
    public List<ThreeCategoriesBean> getThreeCategories() {
        return threeCategories;
    }
 
    public void setThreeCategories(List<ThreeCategoriesBean> threeCategories) {
        this.threeCategories = threeCategories;
    }
 
    public List<ContributorsBean> getContributors() {
        return contributors;
    }
 
    public void setContributors(List<ContributorsBean> contributors) {
        this.contributors = contributors;
    }
 
    public List<PlayControlsBean> getPlayControls() {
        return playControls;
    }
 
    public void setPlayControls(List<PlayControlsBean> playControls) {
        this.playControls = playControls;
    }
 
    public static class VideoBean {
        /**
         * id : 9000000116626100
         * name : 温暖青春第1集
         * url : http://www.iqiyi.com/v_2ffkwy7y3mg.html?vfm=m_330_bwap
         * h5Url : http://m.iqiyi.com/v_2ffkwy7y3mg.html?vfm=m_330_bwap
         * period : 20200805
         * order : 1
         * vid : bdb2109478bab11e90743e933d92c882
         * bossStatus : 0
         * duration : 1462
         */
 
        private long id;
        private String name;
        private String url;
        private String h5Url;
        private String period;
        private int order;
        private String vid;
        private int bossStatus;
        private int duration;
 
        public long getId() {
            return id;
        }
 
        public void setId(long id) {
            this.id = id;
        }
 
        public String getName() {
            return name;
        }
 
        public void setName(String name) {
            this.name = name;
        }
 
        public String getUrl() {
            return url;
        }
 
        public void setUrl(String url) {
            this.url = url;
        }
 
        public String getH5Url() {
            return h5Url;
        }
 
        public void setH5Url(String h5Url) {
            this.h5Url = h5Url;
        }
 
        public String getPeriod() {
            return period;
        }
 
        public void setPeriod(String period) {
            this.period = period;
        }
 
        public int getOrder() {
            return order;
        }
 
        public void setOrder(int order) {
            this.order = order;
        }
 
        public String getVid() {
            return vid;
        }
 
        public void setVid(String vid) {
            this.vid = vid;
        }
 
        public int getBossStatus() {
            return bossStatus;
        }
 
        public void setBossStatus(int bossStatus) {
            this.bossStatus = bossStatus;
        }
 
        public int getDuration() {
            return duration;
        }
 
        public void setDuration(int duration) {
            this.duration = duration;
        }
    }
 
    public static class StatisticsBean {
        /**
         * id : 9000000001266601
         * hot : 1197
         * score : 7.5
         */
 
        private long id;
        private int hot;
        private double score;
 
        public long getId() {
            return id;
        }
 
        public void setId(long id) {
            this.id = id;
        }
 
        public int getHot() {
            return hot;
        }
 
        public void setHot(int hot) {
            this.hot = hot;
        }
 
        public double getScore() {
            return score;
        }
 
        public void setScore(double score) {
            this.score = score;
        }
    }
 
    public static class ThreeCategoriesBean {
        /**
         * id : 15
         * name : 内地
         * subType : 1
         * subCtgName : 地区
         */
 
        private int id;
        private String name;
        private int subType;
        private String subCtgName;
 
        public int getId() {
            return id;
        }
 
        public void setId(int id) {
            this.id = id;
        }
 
        public String getName() {
            return name;
        }
 
        public void setName(String name) {
            this.name = name;
        }
 
        public int getSubType() {
            return subType;
        }
 
        public void setSubType(int subType) {
            this.subType = subType;
        }
 
        public String getSubCtgName() {
            return subCtgName;
        }
 
        public void setSubCtgName(String subCtgName) {
            this.subCtgName = subCtgName;
        }
    }
 
    public static class ContributorsBean {
        /**
         * type : 8
         * name : 李龙(演员)
         * roleName : 李大伟
         */
 
        private int type;
        private String name;
        private String roleName;
 
        public int getType() {
            return type;
        }
 
        public void setType(int type) {
            this.type = type;
        }
 
        public String getName() {
            return name;
        }
 
        public void setName(String name) {
            this.name = name;
        }
 
        public String getRoleName() {
            return roleName;
        }
 
        public void setRoleName(String roleName) {
            this.roleName = roleName;
        }
    }
 
    public static class PlayControlsBean {
        /**
         * platformId : 14
         * downloadAllowed : 1
         * cooperationAllowed : 1
         * availableStatus : 1
         * twAvailableStatus : 2
         */
 
        private int platformId;
        private int downloadAllowed;
        private int cooperationAllowed;
        private int availableStatus;
        private int twAvailableStatus;
 
        public int getPlatformId() {
            return platformId;
        }
 
        public void setPlatformId(int platformId) {
            this.platformId = platformId;
        }
 
        public int getDownloadAllowed() {
            return downloadAllowed;
        }
 
        public void setDownloadAllowed(int downloadAllowed) {
            this.downloadAllowed = downloadAllowed;
        }
 
        public int getCooperationAllowed() {
            return cooperationAllowed;
        }
 
        public void setCooperationAllowed(int cooperationAllowed) {
            this.cooperationAllowed = cooperationAllowed;
        }
 
        public int getAvailableStatus() {
            return availableStatus;
        }
 
        public void setAvailableStatus(int availableStatus) {
            this.availableStatus = availableStatus;
        }
 
        public int getTwAvailableStatus() {
            return twAvailableStatus;
        }
 
        public void setTwAvailableStatus(int twAvailableStatus) {
            this.twAvailableStatus = twAvailableStatus;
        }
    }
 
    public static class CopyrightOwnersBean {
        private int id;
        private String name;
 
        public int getId() {
            return id;
        }
 
        public void setId(int id) {
            this.id = id;
        }
 
        public String getName() {
            return name;
        }
 
        public void setName(String name) {
            this.name = name;
        }
    }
 
    public static class PanoramaBean {
        private int videoType;
        private int viewAngleX;
        private int viewAngleY;
        private int zoomRate;
        private String renderingType;
 
        public int getVideoType() {
            return videoType;
        }
 
        public void setVideoType(int videoType) {
            this.videoType = videoType;
        }
 
        public int getViewAngleX() {
            return viewAngleX;
        }
 
        public void setViewAngleX(int viewAngleX) {
            this.viewAngleX = viewAngleX;
        }
 
        public int getViewAngleY() {
            return viewAngleY;
        }
 
        public void setViewAngleY(int viewAngleY) {
            this.viewAngleY = viewAngleY;
        }
 
        public int getZoomRate() {
            return zoomRate;
        }
 
        public void setZoomRate(int zoomRate) {
            this.zoomRate = zoomRate;
        }
 
        public String getRenderingType() {
            return renderingType;
        }
 
        public void setRenderingType(String renderingType) {
            this.renderingType = renderingType;
        }
    }
}