Helius
2020-12-24 22bef59bbd7a0ca2718abeaa15f5918480483791
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
package com.matrix.system.app.vo;
 
import com.matrix.system.hive.bean.ShoppingGoodsCategory;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author wzy
 * @date 2020-12-24
 **/
@ApiModel(value = "ShoppingGoodsDetailVo", description = "商品详情返回参数类")
public class ShoppingGoodsDetailVo {
 
    @ApiModelProperty(value = "商品编号")
    private String goodsNo;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "销售价格")
    private BigDecimal salePrice;
 
    @ApiModelProperty(value = "销量")
    private Integer saleCnt;
 
    @ApiModelProperty(value = "主图")
    private String img;
 
    @ApiModelProperty(value = "详情")
    private String desc;
 
    @ApiModelProperty(value = "商品类型")
    private String goodsType;
 
    @ApiModelProperty(value = "容积")
    private Integer volume;
 
    @ApiModelProperty(value = "规格")
    private String measure;
 
    @ApiModelProperty(value = "最大销售数量")
    private Integer maxSaleCnt;
 
    @ApiModelProperty(value = "每人限购次数")
    private String limitBuyCnt;
 
    @ApiModelProperty(value = "充值卡使用范围 是-所有产品 否-部分产品")
    private String carIsAll;
 
    @ApiModelProperty(value = "赠送金额")
    private BigDecimal giftPrice;
 
    @ApiModelProperty(value = "项目关联产品--配料表、卡项可消费产品")
    List<ShoppingGoodsDetailVo> assembleProj;
 
    @ApiModelProperty(value = "套餐项目权益")
    List<ShoppingGoodsDetailVo> assembleTaocanProj;
 
    @ApiModelProperty(value = "套餐产品权益")
    List<ShoppingGoodsDetailVo> assembleTaocanProduct;
 
    @ApiModelProperty(value = "卡项产品可消费类型")
    List<ShoppingGoodsCategory> cardCategory;
 
    public BigDecimal getGiftPrice() {
        return giftPrice;
    }
 
    public void setGiftPrice(BigDecimal giftPrice) {
        this.giftPrice = giftPrice;
    }
 
    public String getCarIsAll() {
        return carIsAll;
    }
 
    public void setCarIsAll(String carIsAll) {
        this.carIsAll = carIsAll;
    }
 
    public String getGoodsNo() {
        return goodsNo;
    }
 
    public void setGoodsNo(String goodsNo) {
        this.goodsNo = goodsNo;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public BigDecimal getSalePrice() {
        return salePrice;
    }
 
    public void setSalePrice(BigDecimal salePrice) {
        this.salePrice = salePrice;
    }
 
    public Integer getSaleCnt() {
        return saleCnt;
    }
 
    public void setSaleCnt(Integer saleCnt) {
        this.saleCnt = saleCnt;
    }
 
    public String getImg() {
        return img;
    }
 
    public void setImg(String img) {
        this.img = img;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public String getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(String goodsType) {
        this.goodsType = goodsType;
    }
 
    public Integer getVolume() {
        return volume;
    }
 
    public void setVolume(Integer volume) {
        this.volume = volume;
    }
 
    public String getMeasure() {
        return measure;
    }
 
    public void setMeasure(String measure) {
        this.measure = measure;
    }
 
    public Integer getMaxSaleCnt() {
        return maxSaleCnt;
    }
 
    public void setMaxSaleCnt(Integer maxSaleCnt) {
        this.maxSaleCnt = maxSaleCnt;
    }
 
    public String getLimitBuyCnt() {
        return limitBuyCnt;
    }
 
    public void setLimitBuyCnt(String limitBuyCnt) {
        this.limitBuyCnt = limitBuyCnt;
    }
 
    public List<ShoppingGoodsDetailVo> getAssembleProj() {
        return assembleProj;
    }
 
    public void setAssembleProj(List<ShoppingGoodsDetailVo> assembleProj) {
        this.assembleProj = assembleProj;
    }
 
    public List<ShoppingGoodsDetailVo> getAssembleTaocanProj() {
        return assembleTaocanProj;
    }
 
    public void setAssembleTaocanProj(List<ShoppingGoodsDetailVo> assembleTaocanProj) {
        this.assembleTaocanProj = assembleTaocanProj;
    }
 
    public List<ShoppingGoodsDetailVo> getAssembleTaocanProduct() {
        return assembleTaocanProduct;
    }
 
    public void setAssembleTaocanProduct(List<ShoppingGoodsDetailVo> assembleTaocanProduct) {
        this.assembleTaocanProduct = assembleTaocanProduct;
    }
 
    public List<ShoppingGoodsCategory> getCardCategory() {
        return cardCategory;
    }
 
    public void setCardCategory(List<ShoppingGoodsCategory> cardCategory) {
        this.cardCategory = cardCategory;
    }
}