shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.ishop.model.vo;
 
/**
 * 商户首页信息
 * @date 2023-07-04
 */
public class MerchantIndexVo extends MerchantServiceInfoVo {
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public Integer getTypeId() {
        return typeId;
    }
 
    public void setTypeId(Integer typeId) {
        this.typeId = typeId;
    }
 
    public Boolean getIsSelf() {
        return isSelf;
    }
 
    public void setIsSelf(Boolean self) {
        isSelf = self;
    }
 
    public String getBackImage() {
        return backImage;
    }
 
    public void setBackImage(String backImage) {
        this.backImage = backImage;
    }
 
    public String getAvatar() {
        return avatar;
    }
 
    public void setAvatar(String avatar) {
        this.avatar = avatar;
    }
 
    public Integer getStarLevel() {
        return starLevel;
    }
 
    public void setStarLevel(Integer starLevel) {
        this.starLevel = starLevel;
    }
 
    public Boolean getIsCollect() {
        return isCollect;
    }
 
    public void setIsCollect(Boolean collect) {
        isCollect = collect;
    }
 
    //    @ApiModelProperty(value = "商户ID")
    private Integer id;
 
//    @ApiModelProperty(value = "商户名称")
    private String name;
 
//    @ApiModelProperty(value = "商户分类ID")
    private Integer categoryId;
 
//    @ApiModelProperty(value = "商户类型ID")
    private Integer typeId;
 
//    @ApiModelProperty(value = "是否自营:0-非自营,1-自营")
    private Boolean isSelf;
 
//    @ApiModelProperty(value = "商户背景图")
    private String backImage;
 
//    @ApiModelProperty(value = "商户头像")
    private String avatar;
 
//    @ApiModelProperty(value = "商户星级1-5")
    private Integer starLevel;
 
//    @ApiModelProperty(value = "是否关注:0-未关注,1-已关注")
    private Boolean isCollect;
 
////    @ApiModelProperty(value = "客服类型:H5-H5链接、phone-电话")
//    private String serviceType;
//
////    @ApiModelProperty(value = "客服H5链接")
//    private String serviceLink;
//
////    @ApiModelProperty(value = "客服电话")
//    private String servicePhone;
 
//    @ApiModelProperty(value = "pcBanner")
//    private String pcBanner;
//
//    @ApiModelProperty(value = "pc背景图")
//    private String pcBackImage;
}