SearchMasterDetailBean.java 18.3 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
package com.wd.foundation.bean.response;


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

/**
 *
 * 搜索聚合批查信息数据
 * @author baozhaoxin
 * @version [V1.0.0, 2024/7/10]
 * @since V1.0.0
 */
public class SearchMasterDetailBean extends BaseBean {

    /**
     * 创作者ID
     */
    private String creatorId;

    /**
     * 视界用户ID
     */
    private String userId;

    /**
     * 创作者名称
     */
    private String userName;

    /**
     * 用户类型 1:普通用户,2:创作者 3:矩阵号 4:运营子账号 5:内容源账号
     */
    private String userType;

    /**
     * 用户头像
     */
    private String headPhotoUrl;

    /**
     * 个人简介
     */
    private String introduction;

    /**
     * 视界加权获赞数
     */
    private String likeNum;

    /**
     * 视界关注数
     */
    private String attentionNum;

    /**
     * 视界内容发布量
     */
    private String publishNum;

    /**
     * 视界账号可否被关注 0-不可关注 1-可关注
     */
    private String isAttention;

    /**
     * 视界发布内容可否被评论 0-不可评论 1-可评论
     */
    private String isComment;

    /**
     * 视界内容被收藏数
     */
    private String collectNum;

    /**
     * 视界内容被转发量(分享量)
     */
    private String shareNum;

    /**
     * 双端所属省份(客户端根据code自己解析处理)
     */
    private String province;

    /**
     * 双端所属地市(客户端根据code自己解析处理)
     */
    private String city;

    /**
     * 双端所属区县(客户端根据code自己解析处理)
     */
    private String district;

    /**
     * 双端最近登录用户IP归属地
     */
    private String region;

    /**
     * 视界号主主页是否可见 0-不可见 1-可见
     */
    private String isVisiable;

    /**
     * 认证图标地址
     */
    private String authIcon;

    /**
     * 视界--领域认证信息
     */
    private String authTitle;

    /**
     * 身份认证信息
     */
    private String authPersonal;

    /**
     * 中文版--领域/官方认证信息
     */
    private String categoryAuth;

    /**
     * 认证id:1蓝2黄
     */
    private String authId;

    /**
     * 荣誉称号图标地址
     */
    private String honoraryIcon;

    /**
     * 荣誉称号名称
     */
    private String honoraryTitle;

    /**
     * 主体类型  0:个人 1:媒体,2:企业:3:政府,4:其他企业
     */
    private String subjectType;

    /**
     * 视界店铺地址
     */
    private String storeUrl;

    /**
     * 视界是否拥有电商权限 0-未拥有 1-拥有
     */
    private String shopOpen;

    /**
     * 双端是否拥有原始电商权限 0-拥有 1-未拥有
     */
    private String waresSwitch;

    /**
     * 中文端用户ID
     */
    private String cnUserId;

    /**
     * 中文端用户类型
     */
    private String cnUserType;

    /**
     * 中文端用户名称
     */
    private String cnUserName;

    /**
     * 中文端账号注册时间
     */
    private String cnRegistTime;

    /**
     * 中文端获赞量
     */
    private String cnLikeNum;

    /**
     * 中文端关注量(自己关注别人的)
     */
    private String cnAttentionNum;

    /**
     * 中文端粉丝量(别人关注自己的)
     */
    private String cnFansNum;

    /**
     * 中文端实际使用粉丝数字段
     */
    private String fansNum;

    /**
     * 中文端内容被收藏量
     */
    private String cnCollectNum;

    /**
     * 中文端内容被转发量(分享量)
     */
    private String cnShareNum;

    /**
     * 中文端内容被评论量
     */
    private String cnCommentNum;

    /**
     * 中文端发布内容可否被评论 0-不可评论 1-可评论
     */
    private String cnIsComment;

    /**
     * 中文端发布内容可否被点赞 0-不可点赞 1-可点赞
     */
    private String cnIsLike;

    /**
     * 视界发布内容可否被点赞 0-不可点赞 1-可点赞
     */
    private String isLike;

    /**
     * 中文端账号是否拥有主页展示权限 0-未拥有 1-拥有
     */
    private String cnMainControl;

    /**
     * 中文端账号是否拥有主页展示权限 0-未拥有 1-拥有
     */
    private String mainControl;

    /**
     * 中文端账号可否被关注 0-不可关注 1-可关注
     */
    private String cnIsAttention;

    /**
     * 双端海报分享权益  0:无 1:有
     */
    private String posterShareControl;

    /**
     * 视界分享开关 0:关闭 1:开启
     */
    private String shareControl;

    /**
     * 中文端分享开关 0:关闭 1:开启
     */
    private String cnShareControl;

    /**
     * 视界直播评论开关 0:关闭 1:开启
     */
    private String liveCommentControl;

    /**
     * 中文端直播评论开关 0:关闭 1:开启
     */
    private String cnLiveCommentControl;

    /**
     * 视界直播点赞开关 0:关闭 1:开启
     */
    private String liveLikeControl;

    /**
     * 中文端直播点赞开关 0:关闭 1:开启
     */
    private String cnLiveLikeControl;

    /**
     * 视界直播分享开关 0:关闭 1:开启
     */
    private String liveShareControl;

    /**
     * 中文端直播分享开关 0:关闭 1:开启
     */
    private String cnLiveShareControl;

    /**
     * 视界直播送礼开关 0:关闭 1:开启
     */
    private String liveGiftControl;

    /**
     * 中文端直播送礼开关 0:关闭 1:开启
     */
    private String cnLiveGiftControl;

    /**
     * 视界内容分发 0:关闭 1:开启
     */
    private String contentPublish;

    /**
     * 视界直播分发权限 0:关闭 1:开启
     */
    private String livePublish;

    /**
     * 中文版内容分发权限 0:关闭 1:开启
     */
    private String cnContentPublish;

    /**
     * 中文版直播分发权限 0:关闭 1:开启
     */
    private String cnLivePublish;

    /**
     * 视频生产权限 0:关闭 1:开启
     */
    private String videoCreation;

    /**
     * 视频合集生产权限 0:关闭 1:开启
     */
    private String videoCollectionCreation;

    /**
     * 文章生产权限 0:关闭 1:开启
     */
    private String articleCreation;

    /**
     * 图集生产权限 0:关闭 1:开启
     */
    private String pictureCollectionCreation;

    /**
     * 动态生产权限 0:关闭 1:开启
     */
    private String dynamicControl;

    /**
     * 发起直播权限 0:关闭 1:开启
     */
    private String liveSwitch;

    /**
     * 双端账号封禁 0:正常,1:封禁
     */
    private String banControl;

    public String getCreatorId() {
        return creatorId;
    }

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

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getUserType() {
        return userType;
    }

    public void setUserType(String userType) {
        this.userType = userType;
    }

    public String getHeadPhotoUrl() {
        return headPhotoUrl;
    }

    public void setHeadPhotoUrl(String headPhotoUrl) {
        this.headPhotoUrl = headPhotoUrl;
    }

    public String getIntroduction() {
        return introduction;
    }

    public void setIntroduction(String introduction) {
        this.introduction = introduction;
    }

    public String getLikeNum() {
        return likeNum;
    }

    public void setLikeNum(String likeNum) {
        this.likeNum = likeNum;
    }

    public String getAttentionNum() {
        return attentionNum;
    }

    public void setAttentionNum(String attentionNum) {
        this.attentionNum = attentionNum;
    }

    public String getPublishNum() {
        return publishNum;
    }

    public void setPublishNum(String publishNum) {
        this.publishNum = publishNum;
    }

    public String getIsAttention() {
        return isAttention;
    }

    public void setIsAttention(String isAttention) {
        this.isAttention = isAttention;
    }

    public String getIsComment() {
        return isComment;
    }

    public void setIsComment(String isComment) {
        this.isComment = isComment;
    }

    public String getCollectNum() {
        return collectNum;
    }

    public void setCollectNum(String collectNum) {
        this.collectNum = collectNum;
    }

    public String getShareNum() {
        return shareNum;
    }

    public void setShareNum(String shareNum) {
        this.shareNum = shareNum;
    }

    public String getProvince() {
        return province;
    }

    public void setProvince(String province) {
        this.province = province;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getDistrict() {
        return district;
    }

    public void setDistrict(String district) {
        this.district = district;
    }

    public String getRegion() {
        return region;
    }

    public void setRegion(String region) {
        this.region = region;
    }

    public String getIsVisiable() {
        return isVisiable;
    }

    public void setIsVisiable(String isVisiable) {
        this.isVisiable = isVisiable;
    }

    public String getAuthIcon() {
        return authIcon;
    }

    public void setAuthIcon(String authIcon) {
        this.authIcon = authIcon;
    }

    public String getAuthTitle() {
        return authTitle;
    }

    public void setAuthTitle(String authTitle) {
        this.authTitle = authTitle;
    }

    public String getAuthPersonal() {
        return authPersonal;
    }

    public void setAuthPersonal(String authPersonal) {
        this.authPersonal = authPersonal;
    }

    public String getCategoryAuth() {
        return categoryAuth;
    }

    public void setCategoryAuth(String categoryAuth) {
        this.categoryAuth = categoryAuth;
    }

    public String getAuthId() {
        return authId;
    }

    public void setAuthId(String authId) {
        this.authId = authId;
    }

    public String getHonoraryIcon() {
        return honoraryIcon;
    }

    public void setHonoraryIcon(String honoraryIcon) {
        this.honoraryIcon = honoraryIcon;
    }

    public String getHonoraryTitle() {
        return honoraryTitle;
    }

    public void setHonoraryTitle(String honoraryTitle) {
        this.honoraryTitle = honoraryTitle;
    }

    public String getSubjectType() {
        return subjectType;
    }

    public void setSubjectType(String subjectType) {
        this.subjectType = subjectType;
    }

    public String getStoreUrl() {
        return storeUrl;
    }

    public void setStoreUrl(String storeUrl) {
        this.storeUrl = storeUrl;
    }

    public String getShopOpen() {
        return shopOpen;
    }

    public void setShopOpen(String shopOpen) {
        this.shopOpen = shopOpen;
    }

    public String getWaresSwitch() {
        return waresSwitch;
    }

    public void setWaresSwitch(String waresSwitch) {
        this.waresSwitch = waresSwitch;
    }

    public String getCnUserId() {
        return cnUserId;
    }

    public void setCnUserId(String cnUserId) {
        this.cnUserId = cnUserId;
    }

    public String getCnUserType() {
        return cnUserType;
    }

    public void setCnUserType(String cnUserType) {
        this.cnUserType = cnUserType;
    }

    public String getCnUserName() {
        return cnUserName;
    }

    public void setCnUserName(String cnUserName) {
        this.cnUserName = cnUserName;
    }

    public String getCnRegistTime() {
        return cnRegistTime;
    }

    public void setCnRegistTime(String cnRegistTime) {
        this.cnRegistTime = cnRegistTime;
    }

    public String getCnLikeNum() {
        return cnLikeNum;
    }

    public void setCnLikeNum(String cnLikeNum) {
        this.cnLikeNum = cnLikeNum;
    }

    public String getCnAttentionNum() {
        return cnAttentionNum;
    }

    public void setCnAttentionNum(String cnAttentionNum) {
        this.cnAttentionNum = cnAttentionNum;
    }

    public String getCnFansNum() {
        return cnFansNum;
    }

    public void setCnFansNum(String cnFansNum) {
        this.cnFansNum = cnFansNum;
    }

    public String getFansNum() {
        return fansNum;
    }

    public void setFansNum(String fansNum) {
        this.fansNum = fansNum;
    }

    public String getCnCollectNum() {
        return cnCollectNum;
    }

    public void setCnCollectNum(String cnCollectNum) {
        this.cnCollectNum = cnCollectNum;
    }

    public String getCnShareNum() {
        return cnShareNum;
    }

    public void setCnShareNum(String cnShareNum) {
        this.cnShareNum = cnShareNum;
    }

    public String getCnCommentNum() {
        return cnCommentNum;
    }

    public void setCnCommentNum(String cnCommentNum) {
        this.cnCommentNum = cnCommentNum;
    }

    public String getCnIsComment() {
        return cnIsComment;
    }

    public void setCnIsComment(String cnIsComment) {
        this.cnIsComment = cnIsComment;
    }

    public String getCnIsLike() {
        return cnIsLike;
    }

    public void setCnIsLike(String cnIsLike) {
        this.cnIsLike = cnIsLike;
    }

    public String getIsLike() {
        return isLike;
    }

    public void setIsLike(String isLike) {
        this.isLike = isLike;
    }

    public String getCnMainControl() {
        return cnMainControl;
    }

    public void setCnMainControl(String cnMainControl) {
        this.cnMainControl = cnMainControl;
    }

    public String getMainControl() {
        return mainControl;
    }

    public void setMainControl(String mainControl) {
        this.mainControl = mainControl;
    }

    public String getCnIsAttention() {
        return cnIsAttention;
    }

    public void setCnIsAttention(String cnIsAttention) {
        this.cnIsAttention = cnIsAttention;
    }

    public String getPosterShareControl() {
        return posterShareControl;
    }

    public void setPosterShareControl(String posterShareControl) {
        this.posterShareControl = posterShareControl;
    }

    public String getShareControl() {
        return shareControl;
    }

    public void setShareControl(String shareControl) {
        this.shareControl = shareControl;
    }

    public String getCnShareControl() {
        return cnShareControl;
    }

    public void setCnShareControl(String cnShareControl) {
        this.cnShareControl = cnShareControl;
    }

    public String getLiveCommentControl() {
        return liveCommentControl;
    }

    public void setLiveCommentControl(String liveCommentControl) {
        this.liveCommentControl = liveCommentControl;
    }

    public String getCnLiveCommentControl() {
        return cnLiveCommentControl;
    }

    public void setCnLiveCommentControl(String cnLiveCommentControl) {
        this.cnLiveCommentControl = cnLiveCommentControl;
    }

    public String getLiveLikeControl() {
        return liveLikeControl;
    }

    public void setLiveLikeControl(String liveLikeControl) {
        this.liveLikeControl = liveLikeControl;
    }

    public String getCnLiveLikeControl() {
        return cnLiveLikeControl;
    }

    public void setCnLiveLikeControl(String cnLiveLikeControl) {
        this.cnLiveLikeControl = cnLiveLikeControl;
    }

    public String getLiveShareControl() {
        return liveShareControl;
    }

    public void setLiveShareControl(String liveShareControl) {
        this.liveShareControl = liveShareControl;
    }

    public String getCnLiveShareControl() {
        return cnLiveShareControl;
    }

    public void setCnLiveShareControl(String cnLiveShareControl) {
        this.cnLiveShareControl = cnLiveShareControl;
    }

    public String getLiveGiftControl() {
        return liveGiftControl;
    }

    public void setLiveGiftControl(String liveGiftControl) {
        this.liveGiftControl = liveGiftControl;
    }

    public String getCnLiveGiftControl() {
        return cnLiveGiftControl;
    }

    public void setCnLiveGiftControl(String cnLiveGiftControl) {
        this.cnLiveGiftControl = cnLiveGiftControl;
    }

    public String getContentPublish() {
        return contentPublish;
    }

    public void setContentPublish(String contentPublish) {
        this.contentPublish = contentPublish;
    }

    public String getLivePublish() {
        return livePublish;
    }

    public void setLivePublish(String livePublish) {
        this.livePublish = livePublish;
    }

    public String getCnContentPublish() {
        return cnContentPublish;
    }

    public void setCnContentPublish(String cnContentPublish) {
        this.cnContentPublish = cnContentPublish;
    }

    public String getCnLivePublish() {
        return cnLivePublish;
    }

    public void setCnLivePublish(String cnLivePublish) {
        this.cnLivePublish = cnLivePublish;
    }

    public String getVideoCreation() {
        return videoCreation;
    }

    public void setVideoCreation(String videoCreation) {
        this.videoCreation = videoCreation;
    }

    public String getVideoCollectionCreation() {
        return videoCollectionCreation;
    }

    public void setVideoCollectionCreation(String videoCollectionCreation) {
        this.videoCollectionCreation = videoCollectionCreation;
    }

    public String getArticleCreation() {
        return articleCreation;
    }

    public void setArticleCreation(String articleCreation) {
        this.articleCreation = articleCreation;
    }

    public String getPictureCollectionCreation() {
        return pictureCollectionCreation;
    }

    public void setPictureCollectionCreation(String pictureCollectionCreation) {
        this.pictureCollectionCreation = pictureCollectionCreation;
    }

    public String getDynamicControl() {
        return dynamicControl;
    }

    public void setDynamicControl(String dynamicControl) {
        this.dynamicControl = dynamicControl;
    }

    public String getLiveSwitch() {
        return liveSwitch;
    }

    public void setLiveSwitch(String liveSwitch) {
        this.liveSwitch = liveSwitch;
    }

    public String getBanControl() {
        return banControl;
    }

    public void setBanControl(String banControl) {
        this.banControl = banControl;
    }
}