Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
 
import java.math.BigDecimal;
 
/**
 * @description 产品规格表
 * @author jyy
 * @date 2019-06-10 10:58
 */
public class ShopSku  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 产品ID
     */
    private Integer  pId;
            
    
    /**
     * 规格名称
     */
    private String  name;
            
    
    /**
     * 规格图片地址
     */
    private String  imgPath;
            
    
    /**
     * 库存
     */
    private Integer  stock;
            
    
    /**
     * 价格
     */
    private BigDecimal price;
 
    /**
     *自购提成
     */
    private BigDecimal selfPrice;
    /**
     *推广提成
     */
    private BigDecimal sealesPrice;
    /**
     *邀请提成
     */
    private BigDecimal invitationPrice;
 
    /**
     * 消费可得积分
     */
    private Integer score;
 
    /**
     * 积分兑换所需支付金额
     */
    private BigDecimal scorePrice;
    /**
     * 积分兑换所需支付积分
     */
    private Integer scoreCount;
 
 
    /**
     * 排序
     */
    private Integer  sort;
 
    /**
     * 代号
     */
    private String atrid;
 
    /**
     * 库存编码
     */
    private String stockCode;
 
    private int sealCount;
 
    private Long shopId;
 
    private Long companyId;
 
    @Extend
    private String shopName;
 
    @Extend
    private String goodsName;
 
 
    public Integer getScoreCount() {
        return scoreCount;
    }
 
    public void setScoreCount(Integer scoreCount) {
        this.scoreCount = scoreCount;
    }
 
    public BigDecimal getSealesPrice() {
        return sealesPrice;
    }
 
    public void setSealesPrice(BigDecimal sealesPrice) {
        this.sealesPrice = sealesPrice;
    }
 
    public BigDecimal getInvitationPrice() {
        return invitationPrice;
    }
 
    public void setInvitationPrice(BigDecimal invitationPrice) {
        this.invitationPrice = invitationPrice;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getStockCode() {
        return stockCode;
    }
 
    public void setStockCode(String stockCode) {
        this.stockCode = stockCode;
    }
 
    public Integer getpId() {
        return pId;
    }
 
    public void setpId(Integer pId) {
        this.pId = pId;
    }
 
    public int getSealCount() {
        return sealCount;
    }
 
    public void setSealCount(int sealCount) {
        this.sealCount = sealCount;
    }
 
    private BigDecimal purchasePrice;
 
    public BigDecimal getPurchasePrice() {
        return purchasePrice;
    }
 
    public void setPurchasePrice(BigDecimal purchasePrice) {
        this.purchasePrice = purchasePrice;
    }
 
    public Integer getId() {
        return id;
    }
 
       public void setId(Integer id) {
        this.id=id;
    }
 
 
    public Integer getPId() {
        return pId;
    }
 
       public void setPId(Integer pId) {
        this.pId=pId;
    }
 
 
    public String getName() {
        return name;
    }
 
       public void setName(String name) {
        this.name=name;
    }
 
 
    public String getImgPath() {
        return imgPath;
    }
 
       public void setImgPath(String imgPath) {
        this.imgPath=imgPath;
    }
 
 
    public Integer getStock() {
        return stock;
    }
 
       public void setStock(Integer stock) {
        this.stock=stock;
    }
 
 
    public BigDecimal getPrice() {
        return price;
    }
 
       public void setPrice(BigDecimal price) {
        this.price=price;
    }
 
    public Integer getScore() {
        return score;
    }
 
    public void setScore(Integer score) {
        this.score = score;
    }
 
    public Integer getSort() {
        return sort;
    }
 
       public void setSort(Integer sort) {
        this.sort=sort;
    }
 
    public String getAtrid() {
        return atrid;
    }
 
    public void setAtrid(String atrid) {
        this.atrid = atrid;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public BigDecimal getScorePrice() {
        return scorePrice;
    }
 
    public void setScorePrice(BigDecimal scorePrice) {
        this.scorePrice = scorePrice;
    }
 
    @Override
    public boolean equals(Object obj) {
        //这里以name为判定标准。
        return id.equals(((ShopSku) obj).getId());
    }
 
    public BigDecimal getSelfPrice() {
        return selfPrice;
    }
 
    public void setSelfPrice(BigDecimal selfPrice) {
        this.selfPrice = selfPrice;
    }
 
}