SingleContentBean.java 21.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 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 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

package com.wd.foundation.bean.response;

import java.util.List;

import com.wd.foundation.bean.base.BaseBean;

public class SingleContentBean extends BaseBean {

    private int auditingStatus;

    private String cityCode;

    private String classify;

    private ContentExtDTO contentExt;

    private List<ContentPicturesDTO> contentPictures;

    private ContentShareDTO contentShare;

    private ContentSourceDTO contentSource;

    private List<ContentTagsDTO> contentTags;

    private List<ContentVideosDTO> contentVideos;

    private String coverHImageBucket;

    private String coverHImageUri;

    private String coverVImageBucket;

    private String coverVImageUri;

    private Long createTime;

    private String createUser;

    private int creatorId;

    private String districtCode;

    private int duration;

    private Long firstPublishTime;

    private String id;

    private int landscape;

    private String name;

    private int onlineStatus;

    private String provinceCode;

    private Long publishTime;

    private String secondClassify;

    private String shareImageBucket;

    private String shareImageUri;

    private String title;

    private String description;

    private Long updateTime;

    private String updateUser;

    public int getAuditingStatus() {
        return auditingStatus;
    }

    public void setAuditingStatus(int auditingStatus) {
        this.auditingStatus = auditingStatus;
    }

    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 ContentExtDTO getContentExt() {
        return contentExt;
    }

    public void setContentExt(ContentExtDTO contentExt) {
        this.contentExt = contentExt;
    }

    public List<ContentPicturesDTO> getContentPictures() {
        return contentPictures;
    }

    public void setContentPictures(List<ContentPicturesDTO> contentPictures) {
        this.contentPictures = contentPictures;
    }

    public ContentShareDTO getContentShare() {
        return contentShare;
    }

    public void setContentShare(ContentShareDTO contentShare) {
        this.contentShare = contentShare;
    }

    public ContentSourceDTO getContentSource() {
        return contentSource;
    }

    public void setContentSource(ContentSourceDTO contentSource) {
        this.contentSource = contentSource;
    }

    public List<ContentTagsDTO> getContentTags() {
        return contentTags;
    }

    public void setContentTags(List<ContentTagsDTO> contentTags) {
        this.contentTags = contentTags;
    }

    public List<ContentVideosDTO> getContentVideos() {
        return contentVideos;
    }

    public void setContentVideos(List<ContentVideosDTO> contentVideos) {
        this.contentVideos = contentVideos;
    }

    public String getCoverHImageBucket() {
        return coverHImageBucket;
    }

    public void setCoverHImageBucket(String coverHImageBucket) {
        this.coverHImageBucket = coverHImageBucket;
    }

    public String getCoverHImageUri() {
        return coverHImageUri;
    }

    public void setCoverHImageUri(String coverHImageUri) {
        this.coverHImageUri = coverHImageUri;
    }

    public String getCoverVImageBucket() {
        return coverVImageBucket;
    }

    public void setCoverVImageBucket(String coverVImageBucket) {
        this.coverVImageBucket = coverVImageBucket;
    }

    public String getCoverVImageUri() {
        return coverVImageUri;
    }

    public void setCoverVImageUri(String coverVImageUri) {
        this.coverVImageUri = coverVImageUri;
    }

    public Long getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
    }

    public String getCreateUser() {
        return createUser;
    }

    public void setCreateUser(String createUser) {
        this.createUser = createUser;
    }

    public int getCreatorId() {
        return creatorId;
    }

    public void setCreatorId(int creatorId) {
        this.creatorId = creatorId;
    }

    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 Long getFirstPublishTime() {
        return firstPublishTime;
    }

    public void setFirstPublishTime(Long firstPublishTime) {
        this.firstPublishTime = firstPublishTime;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public int getLandscape() {
        return landscape;
    }

    public void setLandscape(int landscape) {
        this.landscape = landscape;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getOnlineStatus() {
        return onlineStatus;
    }

    public void setOnlineStatus(int onlineStatus) {
        this.onlineStatus = onlineStatus;
    }

    public String getProvinceCode() {
        return provinceCode;
    }

    public void setProvinceCode(String provinceCode) {
        this.provinceCode = provinceCode;
    }

    public Long getPublishTime() {
        return publishTime;
    }

    public void setPublishTime(Long publishTime) {
        this.publishTime = publishTime;
    }

    public String getSecondClassify() {
        return secondClassify;
    }

    public void setSecondClassify(String secondClassify) {
        this.secondClassify = secondClassify;
    }

    public String getShareImageBucket() {
        return shareImageBucket;
    }

    public void setShareImageBucket(String shareImageBucket) {
        this.shareImageBucket = shareImageBucket;
    }

    public String getShareImageUri() {
        return shareImageUri;
    }

    public void setShareImageUri(String shareImageUri) {
        this.shareImageUri = shareImageUri;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Long getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Long updateTime) {
        this.updateTime = updateTime;
    }

    public String getUpdateUser() {
        return updateUser;
    }

    public void setUpdateUser(String updateUser) {
        this.updateUser = updateUser;
    }

    public static class ContentExtDTO extends BaseBean {
        private String contentId;

        private Long createTime;

        private String createUser;

        private String id;

        private int joinActivity;

        private int likesStyle;

        private int openComment;

        private int openLikes;

        private Long updateTime;

        private String updateUser;

        private int downloadFlag;

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public Long getCreateTime() {
            return createTime;
        }

        public void setCreateTime(Long createTime) {
            this.createTime = createTime;
        }

        public String getCreateUser() {
            return createUser;
        }

        public void setCreateUser(String createUser) {
            this.createUser = createUser;
        }

        public String getId() {
            return id;
        }

        public void setId(String id) {
            this.id = id;
        }

        public int getJoinActivity() {
            return joinActivity;
        }

        public void setJoinActivity(int joinActivity) {
            this.joinActivity = joinActivity;
        }

        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 getOpenLikes() {
            return openLikes;
        }

        public void setOpenLikes(int openLikes) {
            this.openLikes = openLikes;
        }

        public Long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(Long updateTime) {
            this.updateTime = updateTime;
        }

        public String getUpdateUser() {
            return updateUser;
        }

        public void setUpdateUser(String updateUser) {
            this.updateUser = updateUser;
        }

        public int getDownloadFlag() {
            return downloadFlag;
        }

        public void setDownloadFlag(int downloadFlag) {
            this.downloadFlag = downloadFlag;
        }
    }

    public static class ContentShareDTO extends BaseBean {
        private String contentId;

        private Long createTime;

        private String createUser;

        private int id;

        private String shareDescription;

        private String sharePicture;

        private String shareTitle;

        private Long updateTime;

        private String updateUser;

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public Long getCreateTime() {
            return createTime;
        }

        public void setCreateTime(Long createTime) {
            this.createTime = createTime;
        }

        public String getCreateUser() {
            return createUser;
        }

        public void setCreateUser(String createUser) {
            this.createUser = createUser;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }

        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 Long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(Long updateTime) {
            this.updateTime = updateTime;
        }

        public String getUpdateUser() {
            return updateUser;
        }

        public void setUpdateUser(String updateUser) {
            this.updateUser = updateUser;
        }
    }

    public static class ContentSourceDTO extends BaseBean {
        private String contentId;

        private Long createTime;

        private String createUser;

        private int id;

        private String platformId;

        private String sourceId;

        private Long updateTime;

        private String updateUser;

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public Long getCreateTime() {
            return createTime;
        }

        public void setCreateTime(Long createTime) {
            this.createTime = createTime;
        }

        public String getCreateUser() {
            return createUser;
        }

        public void setCreateUser(String createUser) {
            this.createUser = createUser;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }

        public String getPlatformId() {
            return platformId;
        }

        public void setPlatformId(String platformId) {
            this.platformId = platformId;
        }

        public String getSourceId() {
            return sourceId;
        }

        public void setSourceId(String sourceId) {
            this.sourceId = sourceId;
        }

        public Long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(Long updateTime) {
            this.updateTime = updateTime;
        }

        public String getUpdateUser() {
            return updateUser;
        }

        public void setUpdateUser(String updateUser) {
            this.updateUser = updateUser;
        }
    }

    public static class ContentPicturesDTO extends BaseBean {
        private String bucket;

        private String contentId;

        private String description;

        private int format;

        private int height;

        private String id;

        private int landscape;

        private String ossPictureId;

        private String previewUrl;

        private int size;

        private int type;

        private String url;

        private int weight;

        public String getBucket() {
            return bucket;
        }

        public void setBucket(String bucket) {
            this.bucket = bucket;
        }

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public String getDescription() {
            return description;
        }

        public void setDescription(String description) {
            this.description = description;
        }

        public int getFormat() {
            return format;
        }

        public void setFormat(int format) {
            this.format = format;
        }

        public int getHeight() {
            return height;
        }

        public void setHeight(int height) {
            this.height = height;
        }

        public String getId() {
            return id;
        }

        public void setId(String id) {
            this.id = id;
        }

        public int getLandscape() {
            return landscape;
        }

        public void setLandscape(int landscape) {
            this.landscape = landscape;
        }

        public String getOssPictureId() {
            return ossPictureId;
        }

        public void setOssPictureId(String ossPictureId) {
            this.ossPictureId = ossPictureId;
        }

        public String getPreviewUrl() {
            return previewUrl;
        }

        public void setPreviewUrl(String previewUrl) {
            this.previewUrl = previewUrl;
        }

        public int getSize() {
            return size;
        }

        public void setSize(int size) {
            this.size = size;
        }

        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 int getWeight() {
            return weight;
        }

        public void setWeight(int weight) {
            this.weight = weight;
        }
    }

    public static class ContentTagsDTO extends BaseBean {
        private String contentId;

        private Long createTime;

        private String createUser;

        private int id;

        private int tagId;

        private String tagValue;

        private Long updateTime;

        private String updateUser;

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public Long getCreateTime() {
            return createTime;
        }

        public void setCreateTime(Long createTime) {
            this.createTime = createTime;
        }

        public String getCreateUser() {
            return createUser;
        }

        public void setCreateUser(String createUser) {
            this.createUser = createUser;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }

        public int getTagId() {
            return tagId;
        }

        public void setTagId(int tagId) {
            this.tagId = tagId;
        }

        public String getTagValue() {
            return tagValue;
        }

        public void setTagValue(String tagValue) {
            this.tagValue = tagValue;
        }

        public Long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(Long updateTime) {
            this.updateTime = updateTime;
        }

        public String getUpdateUser() {
            return updateUser;
        }

        public void setUpdateUser(String updateUser) {
            this.updateUser = updateUser;
        }
    }

    public static class ContentVideosDTO extends BaseBean {
        private String bucket;

        private String contentId;

        private Long createTime;

        private String createUser;

        private int duration;

        private int id;

        private int landscape;

        private int original;

        private String ossVideoId;

        private String previewUrl;

        private int size;

        private int type;

        private Long updateTime;

        private String updateUser;

        private String url;

        private int clarity;

        private int originalVideoId;

        private int resolutionHeight;

        private int resolutionWidth;

        public String getBucket() {
            return bucket;
        }

        public void setBucket(String bucket) {
            this.bucket = bucket;
        }

        public String getContentId() {
            return contentId;
        }

        public void setContentId(String contentId) {
            this.contentId = contentId;
        }

        public Long getCreateTime() {
            return createTime;
        }

        public void setCreateTime(Long createTime) {
            this.createTime = createTime;
        }

        public String getCreateUser() {
            return createUser;
        }

        public void setCreateUser(String createUser) {
            this.createUser = createUser;
        }

        public int getDuration() {
            return duration;
        }

        public void setDuration(int duration) {
            this.duration = duration;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }

        public int getLandscape() {
            return landscape;
        }

        public void setLandscape(int landscape) {
            this.landscape = landscape;
        }

        public int getOriginal() {
            return original;
        }

        public void setOriginal(int original) {
            this.original = original;
        }

        public String getOssVideoId() {
            return ossVideoId;
        }

        public void setOssVideoId(String ossVideoId) {
            this.ossVideoId = ossVideoId;
        }

        public String getPreviewUrl() {
            return previewUrl;
        }

        public void setPreviewUrl(String previewUrl) {
            this.previewUrl = previewUrl;
        }

        public int getSize() {
            return size;
        }

        public void setSize(int size) {
            this.size = size;
        }

        public int getType() {
            return type;
        }

        public void setType(int type) {
            this.type = type;
        }

        public Long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(Long updateTime) {
            this.updateTime = updateTime;
        }

        public String getUpdateUser() {
            return updateUser;
        }

        public void setUpdateUser(String updateUser) {
            this.updateUser = updateUser;
        }

        public String getUrl() {
            return url;
        }

        public void setUrl(String url) {
            this.url = url;
        }

        public int getClarity() {
            return clarity;
        }

        public void setClarity(int clarity) {
            this.clarity = clarity;
        }

        public int getOriginalVideoId() {
            return originalVideoId;
        }

        public void setOriginalVideoId(int originalVideoId) {
            this.originalVideoId = originalVideoId;
        }

        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;
        }
    }
}