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
package com.ishop.model.response;
 
/**
 * 首页商户列表
 * @date 2023-07-23
 */
public class IndexMerchantResponse {
 
    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 String getRectangleLogo() {
        return rectangleLogo;
    }
 
    public void setRectangleLogo(String rectangleLogo) {
        this.rectangleLogo = rectangleLogo;
    }
 
    public String getCoverImage() {
        return coverImage;
    }
 
    public void setCoverImage(String coverImage) {
        this.coverImage = coverImage;
    }
 
    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;
    }
 
    //    @ApiModelProperty(value = "商户ID")
    private Integer id;
 
//    @ApiModelProperty(value = "商户名称")
    private String name;
 
//    @ApiModelProperty(value = "商户logo(横)")
    private String rectangleLogo;
 
//    @ApiModelProperty(value = "商户封面图")
    private String coverImage;
 
//    @ApiModelProperty(value = "商户分类ID")
    private Integer categoryId;
 
//    @ApiModelProperty(value = "商户类型ID")
    private Integer typeId;
 
}