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
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
package com.ishop.model.vo;
 
import java.math.BigDecimal;
 
/**
 * 商户商品列表。
 * @date 2023-06-15
 * 暂时没用到,直接使用实体对象了。
 */
@Deprecated
public class MerchantProductVo {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getImage() {
        return image;
    }
 
    public void setImage(String image) {
        this.image = image;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public String getCateId() {
        return cateId;
    }
 
    public void setCateId(String cateId) {
        this.cateId = cateId;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public Integer getSales() {
        return sales;
    }
 
    public void setSales(Integer sales) {
        this.sales = sales;
    }
 
    public Integer getStock() {
        return stock;
    }
 
    public void setStock(Integer stock) {
        this.stock = stock;
    }
 
    public Boolean getIsShow() {
        return isShow;
    }
 
    public void setIsShow(Boolean show) {
        isShow = show;
    }
 
    public Integer getAuditStatus() {
        return auditStatus;
    }
 
    public void setAuditStatus(Integer auditStatus) {
        this.auditStatus = auditStatus;
    }
 
    public Boolean getIsAudit() {
        return isAudit;
    }
 
    public void setIsAudit(Boolean audit) {
        isAudit = audit;
    }
 
    public Integer getFicti() {
        return ficti;
    }
 
    public void setFicti(Integer ficti) {
        this.ficti = ficti;
    }
 
    public Integer getCollectCount() {
        return collectCount;
    }
 
    public void setCollectCount(Integer collectCount) {
        this.collectCount = collectCount;
    }
 
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
    //    @ApiModelProperty(value = "商品id")
    private Long id;
 
//    @ApiModelProperty(value = "商品图片")
    private String image;
 
//    @ApiModelProperty(value = "商品名称")
    private String name;
 
//    @ApiModelProperty(value = "关键字")
    private String keyword;
 
//    @ApiModelProperty(value = "分类ids")
    private String cateId;
 
//    @ApiModelProperty(value = "平台分类id")
    private Integer categoryId;
 
//    @ApiModelProperty(value = "商品价格")
    private BigDecimal price;
 
//    @ApiModelProperty(value = "排序")
    private Integer sort;
 
//    @ApiModelProperty(value = "销量")
    private Integer sales;
 
//    @ApiModelProperty(value = "库存")
    private Integer stock;
 
//    @ApiModelProperty(value = "状态(0:未上架,1:上架)")
    private Boolean isShow;
 
//    @ApiModelProperty(value = "审核状态:0-无需审核 1-待审核,2-审核成功,3-审核拒绝")
    private Integer auditStatus;
 
//    @ApiModelProperty(value = "是否加入审核,0-正常,1-审核流程中")
    private Boolean isAudit;
 
//    @ApiModelProperty(value = "虚拟销量")
    private Integer ficti;
 
//    @ApiModelProperty(value = "收藏数量")
    private Integer collectCount;
 
//    @ApiModelProperty(value = "拒绝原因")
    private String reason;
}