VideoItemBean.java
20.2 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
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
package com.wd.foundation.bean.response;
import java.io.Serializable;
import java.util.List;
/**
* 视频信息bean
*
* @author libo
* @version [V1.0.0, 2022/06/23]
* @since V1.0.0
*/
public class VideoItemBean implements Serializable {
private String cityCode;
private String liveId;
private String classify;
private List<?> contentAiTag;
private ContentExtBean contentExt;
private String contentId;
private List<ContentPictureBean> contentPicture;
/**
* 是否默认进入页面显示评论
*/
private boolean isShowComment;
private ContentShareBean contentShare;
private List<?> contentTag;
private List<ContentVideoBean> contentVideo;
private String countryCode;
private String creatorId;
private String creatorType;
private String description;
private String districtCode;
private int duration;
private String firstPublistTime;
private int landscape;
private String provinceCode;
private String firstFrameImageUri;
private String publishArea;
private String publishTime;
private String sceneId;
private String title;
private String contentSource;
private String activityTitle;
private long activityId;
private boolean hasMoreActivity;
/**
* 是否有活动(0没有1有)
*/
private int containActivity;
private boolean isLiveBack;
private boolean isLive;
private String traceId;
private String traceInfo;
private String itemId;
private String itemType;
/**
* 是否有彩蛋:0-无,1-有
*/
private int hasPopUp;
private int hasTopicPageId;// 1有专题页 0无专题页
/**
* 是否全屏播放
*/
private boolean isFullScreen;
/**
* 内容点赞状态 0-未点赞 1-已点赞
*/
private int likeStatus;
/**
* 内容收藏状态 0-未收藏 1-已收藏
*/
private int collectStatus;
/**
* 收藏数
*/
private String collectNum;
/**
* 点赞数
*/
private String likeNum;
/**
* 评论数
*/
private String commentNum;
/**
* 分享数量
*/
private String shareNum;
/**
* 在列表播放器的位置
*/
private int videoPosition = -1;
/**
* 本地-控制全屏按钮位置
*/
private int topMargin;
/**
* 推荐标识强干预tag YY{1}
*/
private String interventionTag;
/**
* 推荐标识领导人tag LDR
*/
private String leaderTag;
/**
* 推荐标识正能量tag ZNL
*/
private String energyTag;
/**
* 推荐标识精品池tag JP|VIP|MVP
*/
private String boutiqueTag;
private boolean hasCountyLocation = false;
/////////////////////////////////
////////// 因埋点添加的字段/////////
////////////////////////////////
/**
* 视频状态: 0:准备;1:正在播放;2:完成
*/
private int videoState;
/**
* 视频耗时
*/
private String timeConsuming;
private String videoCategory;
private String completRate;
// 地址
private String video_publish_address;
private SerialBean serial;
/**
* 详情返回的用户信息,null表示查不到
*/
private PersonalInfoBean creator;
public boolean isHasCountyLocation() {
return hasCountyLocation;
}
public void setHasCountyLocation(boolean hasCountyLocation) {
this.hasCountyLocation = hasCountyLocation;
}
public String getVideo_publish_address() {
return video_publish_address;
}
public void setVideo_publish_address(String video_publish_address) {
this.video_publish_address = video_publish_address;
}
public String getInterventionTag() {
return interventionTag;
}
public void setInterventionTag(String interventionTag) {
this.interventionTag = interventionTag;
}
public String getLeaderTag() {
return leaderTag == null ? "" : leaderTag;
}
public void setLeaderTag(String leaderTag) {
this.leaderTag = leaderTag;
}
public String getEnergyTag() {
return energyTag;
}
public void setEnergyTag(String energyTag) {
this.energyTag = energyTag;
}
public String getBoutiqueTag() {
return boutiqueTag == null ? "" : boutiqueTag;
}
public void setBoutiqueTag(String boutiqueTag) {
this.boutiqueTag = boutiqueTag;
}
public int getTopMargin() {
return topMargin;
}
public void setTopMargin(int topMargin) {
this.topMargin = topMargin;
}
public int getVideoPosition() {
return videoPosition;
}
public int getLikeStatus() {
return likeStatus;
}
public void setLikeStatus(int likeStatus) {
this.likeStatus = likeStatus;
}
public int getCollectStatus() {
return collectStatus;
}
public void setCollectStatus(int collectStatus) {
this.collectStatus = collectStatus;
}
public boolean isShowComment() {
return isShowComment;
}
public void setShowComment(boolean showComment) {
isShowComment = showComment;
}
public void setVideoPosition(int videoPosition) {
this.videoPosition = videoPosition;
}
public boolean isFullScreen() {
return isFullScreen;
}
public void setFullScreen(boolean fullScreen) {
isFullScreen = fullScreen;
}
public String getSceneId() {
return sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
}
public boolean isLive() {
return isLive;
}
public void setLive(boolean live) {
isLive = live;
}
public String getTraceId() {
return traceId;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
public String getTraceInfo() {
return traceInfo;
}
public void setTraceInfo(String traceInfo) {
this.traceInfo = traceInfo;
}
public String getFirstFrameImageUri() {
return firstFrameImageUri;
}
public void setFirstFrameImageUri(String firstFrameImageUri) {
this.firstFrameImageUri = firstFrameImageUri;
}
public boolean isLiveBack() {
return isLiveBack;
}
public void setLiveBack(boolean liveBack) {
isLiveBack = liveBack;
}
public String getCreatorType() {
return creatorType;
}
public void setCreatorType(String creatorType) {
this.creatorType = creatorType;
}
public int getContainActivity() {
return containActivity;
}
public void setContainActivity(int containActivity) {
this.containActivity = containActivity;
}
public String getActivityTitle() {
return activityTitle;
}
public void setActivityTitle(String activityTitle) {
this.activityTitle = activityTitle;
}
public boolean isHasMoreActivity() {
return hasMoreActivity;
}
public void setHasMoreActivity(boolean hasMoreActivity) {
this.hasMoreActivity = hasMoreActivity;
}
public long getActivityId() {
return activityId;
}
public void setActivityId(long activityId) {
this.activityId = activityId;
}
public String getContentSource() {
return contentSource;
}
public void setContentSource(String contentSource) {
this.contentSource = contentSource;
}
public String getCityCode() {
return cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getClassify() {
return classify;
}
public void setClassify(String classify) {
this.classify = classify;
}
public List<?> getContentAiTag() {
return contentAiTag;
}
public void setContentAiTag(List<?> contentAiTag) {
this.contentAiTag = contentAiTag;
}
public ContentExtBean getContentExt() {
return contentExt;
}
public void setContentExt(ContentExtBean contentExt) {
this.contentExt = contentExt;
}
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
public List<ContentPictureBean> getContentPicture() {
return contentPicture;
}
public void setContentPicture(List<ContentPictureBean> contentPicture) {
this.contentPicture = contentPicture;
}
public ContentShareBean getContentShare() {
return contentShare;
}
public void setContentShare(ContentShareBean contentShare) {
this.contentShare = contentShare;
}
public List<?> getContentTag() {
return contentTag;
}
public void setContentTag(List<?> contentTag) {
this.contentTag = contentTag;
}
public List<ContentVideoBean> getContentVideo() {
return contentVideo;
}
public void setContentVideo(List<ContentVideoBean> contentVideo) {
this.contentVideo = contentVideo;
}
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public String getCreatorId() {
return creatorId;
}
public void setCreatorId(String creatorId) {
this.creatorId = creatorId;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDistrictCode() {
return districtCode;
}
public void setDistrictCode(String districtCode) {
this.districtCode = districtCode;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
public String getFirstPublistTime() {
return firstPublistTime;
}
public void setFirstPublistTime(String firstPublistTime) {
this.firstPublistTime = firstPublistTime;
}
public int getLandscape() {
return landscape;
}
public void setLandscape(int landscape) {
this.landscape = landscape;
}
public String getProvinceCode() {
return provinceCode;
}
public void setProvinceCode(String provinceCode) {
this.provinceCode = provinceCode;
}
public String getPublishArea() {
return publishArea;
}
public void setPublishArea(String publishArea) {
this.publishArea = publishArea;
}
public String getPublishTime() {
return publishTime;
}
public void setPublishTime(String publishTime) {
this.publishTime = publishTime;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getHasPopUp() {
return hasPopUp;
}
public void setHasPopUp(int hasPopUp) {
this.hasPopUp = hasPopUp;
}
/**
* 是否有彩蛋
*
* @return
*/
public boolean isHasPopUp() {
return hasPopUp == 1;
}
public int getHasTopicPageId() {
return hasTopicPageId;
}
public void setHasTopicPageId(int hasTopicPageId) {
this.hasTopicPageId = hasTopicPageId;
}
public String getCollectNum() {
return collectNum;
}
public void setCollectNum(String collectNum) {
this.collectNum = collectNum;
}
public String getLikeNum() {
return likeNum;
}
public void setLikeNum(String likeNum) {
this.likeNum = likeNum;
}
public String getCommentNum() {
return commentNum;
}
public void setCommentNum(String commentNum) {
this.commentNum = commentNum;
}
public String getShareNum() {
return shareNum;
}
public void setShareNum(String shareNum) {
this.shareNum = shareNum;
}
public int getVideoState() {
return videoState;
}
public void setVideoState(int videoState) {
this.videoState = videoState;
}
public String getTimeConsuming() {
return timeConsuming;
}
public void setTimeConsuming(String timeConsuming) {
this.timeConsuming = timeConsuming;
}
public String getVideoCategory() {
return videoCategory;
}
public void setVideoCategory(String videoCategory) {
this.videoCategory = videoCategory;
}
public String getCompletRate() {
return completRate;
}
public void setCompletRate(String completRate) {
this.completRate = completRate;
}
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getItemType() {
return itemType;
}
public void setItemType(String itemType) {
this.itemType = itemType;
}
public SerialBean getSerial() {
return serial;
}
public void setSerial(SerialBean serial) {
this.serial = serial;
}
public static class ContentExtBean {
// 1 心型 2拇指(弃用) 3蜡烛(新增)
private int likesStyle;
private int openComment;
private int openDownload;
private int openLikes;
private int preCommentFlag;// 0关1开
public int getPreCommentFlag() {
return preCommentFlag;
}
public void setPreCommentFlag(int preCommentFlag) {
this.preCommentFlag = preCommentFlag;
}
public int getLikesStyle() {
return likesStyle;
}
public void setLikesStyle(int likesStyle) {
this.likesStyle = likesStyle;
}
public int getOpenComment() {
return openComment;
}
public void setOpenComment(int openComment) {
this.openComment = openComment;
}
public int getOpenDownload() {
return openDownload;
}
public void setOpenDownload(int openDownload) {
this.openDownload = openDownload;
}
public int getOpenLikes() {
return openLikes;
}
public void setOpenLikes(int openLikes) {
this.openLikes = openLikes;
}
}
public static class ContentShareBean {
private String shareUrl;
private String shareDescription;
private String sharePicture;
private String shareTitle;
public String getShareDescription() {
return shareDescription;
}
public void setShareDescription(String shareDescription) {
this.shareDescription = shareDescription;
}
public String getSharePicture() {
return sharePicture;
}
public void setSharePicture(String sharePicture) {
this.sharePicture = sharePicture;
}
public String getShareTitle() {
return shareTitle;
}
public void setShareTitle(String shareTitle) {
this.shareTitle = shareTitle;
}
public String getShareUrl() {
return shareUrl;
}
public void setShareUrl(String shareUrl) {
this.shareUrl = shareUrl;
}
}
public static class ContentPictureBean {
private String description;
/**
* landscape;横屏竖屏 1横屏 2竖屏
*/
private int landscape;
private String sort;
private int type;
private String url;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getSort() {
return sort;
}
public void setSort(String sort) {
this.sort = sort;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
public static class SerialBean {
private long serialId;// 合集Id
private String serialName;// 合集名称
private long serialLab;// 合集标签
private int serialNumber;// 视频序号
public long getSerialId() {
return serialId;
}
public void setSerialId(long serialId) {
this.serialId = serialId;
}
public String getSerialName() {
return serialName;
}
public void setSerialName(String serialName) {
this.serialName = serialName;
}
public long getSerialLab() {
return serialLab;
}
public void setSerialLab(long serialLab) {
this.serialLab = serialLab;
}
public int getSerialNumber() {
return serialNumber;
}
public void setSerialNumber(int serialNumber) {
this.serialNumber = serialNumber;
}
}
public static class ContentVideoBean {
private int clarity;
private int duration;
/**
* landscape;横屏竖屏 1横屏 2竖屏
*/
private int landscape;
private String url;
private int resolutionHeight;
private int resolutionWidth;
public int getResolutionHeight() {
return resolutionHeight;
}
public void setResolutionHeight(int resolutionHeight) {
this.resolutionHeight = resolutionHeight;
}
public int getResolutionWidth() {
return resolutionWidth;
}
public void setResolutionWidth(int resolutionWidth) {
this.resolutionWidth = resolutionWidth;
}
public int getClarity() {
return clarity;
}
public void setClarity(int clarity) {
this.clarity = clarity;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
public int getLandscape() {
return landscape;
}
public void setLandscape(int landscape) {
this.landscape = landscape;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
/**
* cityCode : 10001
* classify : 农业
* contentAiTag : {"tagScene":"","tagValue":""}
* contentExt : {"likesStyle":1,"openComment":1,"openDownload":1,"openLikes":1}
* contentId : 123
* contentPicture :
* {"description":"测试","landscape":"1","sort":"","type":"1","url":"http://180.167.180.242:44397/prod-api/profile/upload/photo/7.jpg"}
* contentShare : {"shareDescription":"描述","sharePicture":"","shareTitle":"标题"}
* contentTag : {"classifyCode":"","tagCode":"","tagValue":""}
* contentVideo :
* {"clarity":1,"duration":1200,"landscape":1,"url":"http://180.167.180.242:44397/profile/upload/video/video_7.mp4"}
* countryCode : 101
* creatorId : 1222
* description : 简介
* districtCode : 100001
* duration : 12000 时长
* firstPublistTime : 2022-06-01 20:06:39
* landscape : 1 横屏还是竖屏 1横屏 2竖屏
* provinceCode : 1001
* publishArea : BEIJING
* publishTime : 2022-06-01 20:06:39
* title : 测试标题
* userId : 122
*/
private String creatorImg;
private String creatorName;
public String getCreatorImg() {
return creatorImg;
}
public void setCreatorImg(String creatorImg) {
this.creatorImg = creatorImg;
}
public String getCreatorName() {
return creatorName;
}
public void setCreatorName(String creatorName) {
this.creatorName = creatorName;
}
public String getLiveId() {
return liveId;
}
public void setLiveId(String liveId) {
this.liveId = liveId;
}
public PersonalInfoBean getCreator() {
return creator;
}
public void setCreator(PersonalInfoBean creator) {
this.creator = creator;
}
}