1
935090232@qq.com
2020-12-01 611146e69aaa62296cf84f2ccb5aca5ebba17677
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.system.common.bean.EntityDTOExt;
 
import java.util.List;
 
/**
 * @description 产品表
 * @author jyy
 * @date 2019-06-10 10:58
 */
public class ShopProduct extends EntityDTOExt {
 
    /**
     * 产品类型-服务
     */
    public static  final int IS_SERVICE_Y=1;
    public static  final int IS_SERVICE_N=2;
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 分类ID
     */
    private Integer  categoryId;
            
    
    /**
     * 标题
     */
    private String  title;
            
    
    /**
     * 产品简介
     */
    private String  briefIntroduction;
            
    
    /**
     * 运费
     */
    private Integer  carriage;
            
    
    /**
     * PC端封面
     */
    private String  imgPc;
            
    
    /**
     * 手机端封面
     */
    private String  imgMobile;
            
    
 
            
    
    /**
     * 原价
     */
    private Double  price;
            
    
    /**
     * PC端详情
     */
    private String  pcDetails;
            
    
    /**
     * 手机端详情
     */
    private String  mobileDetails;
            
    
    /**
     * 限购数量
     */
    private Integer  buyLimit;
            
    
    /**
     * 限购周期(单位:天)
     */
    private Integer  limitCycle;
            
    
    /**
     * 是否可以评论(1=是,2=否)
     */
    private Integer  isCanComment;
            
    
    /**
     * 助记码
     */
    private String  mnemonicCode;
            
    
    /**
     * 是否上架(1=是,2=否)
     */
    private Integer  status;
 
    /**
     * 服务时长
     */
    private  Integer serviceTime;
    
    /**
     * 展示销量
     */
    private Integer  dsVolume;
            
    
    /**
     * 真实销量
     */
    private Integer  rsVolume;
            
    
    /**
     * 删除标识(1=是,2=否)
     */
    private Integer  delFlag;
 
    /**
     * 商品属性值
     */
    private String attrValues;
 
    /**
     * 是否为服务(1:是,2:否)
     */
    private Integer isService;
 
    /**
     * 是否特价(1:是,2:否)
     */
    private Integer isSpecialPrice;
 
    /**
     * 划线价格
     */
    private Double markedPrice;
 
    private String shopIds;
 
    private String brand;
 
    /**
     * 商品参数
     */
    @Extend
    private String  paramRefs;
    @Extend
    private List<ShopProductParamRef> params;
 
    /**
     * 商品属性
     */
    @Extend
    private String attrs;
    @Extend
    private List<ShopProductAttrRef>  attrRefs;
 
    /**
     * 商品规格
     */
    @Extend
    private String shopSku;
    @Extend
    private List<ShopSku> skus;
 
    /**
     * 商品图片
     */
    @Extend
    private String shopProductImg;
    @Extend
    private List<ShopProductImg> productImgs;
 
 
    /**
     * 起始价格
     */
    @Extend
    private Integer startPrice;
 
    /**
     * 结束价格
     */
    @Extend
    private Integer endPrice;
 
    /**
     * 查询类型1综合查询,2销量查询,3价格查询
     */
    @Extend
    private String queryType;
 
    /**
     * 排序类型
     */
    @Extend
    private String sortType;
 
    /**
     * 品种编码
     */
    @Extend
    private String atrid;
 
    /**
     * 积分
     */
    @Extend
    private String score;
 
    /**
     * 库存总量
     */
    @Extend
    private String stockNum;
 
    /**
     * 产品关联的最高优惠活动
     */
    @Extend
    private ShopCoupon shopCoupon;
 
    /**
     * 优惠券id
     */
    private Integer couponId;
 
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public String getBrand() {
        return brand;
    }
 
    public void setBrand(String brand) {
        this.brand = brand;
    }
 
    public String getShopIds() {
        return shopIds;
    }
 
    public void setShopIds(String shopIds) {
        this.shopIds = shopIds;
    }
 
    public ShopCoupon getShopCoupon() {
        return shopCoupon;
    }
 
    public void setShopCoupon(ShopCoupon shopCoupon) {
        this.shopCoupon = shopCoupon;
    }
 
    public Integer getCouponId() {
        return couponId;
    }
 
    public void setCouponId(Integer couponId) {
        this.couponId = couponId;
    }
 
    public String getStockNum() {
        return stockNum;
    }
 
    public void setStockNum(String stockNum) {
        this.stockNum = stockNum;
    }
 
    public Integer getIsService() {
        return isService;
    }
 
    public void setIsService(Integer isService) {
        this.isService = isService;
    }
 
    public Integer getIsSpecialPrice() {
        return isSpecialPrice;
    }
 
    public void setIsSpecialPrice(Integer isSpecialPrice) {
        this.isSpecialPrice = isSpecialPrice;
    }
 
    public Double getMarkedPrice() {
        return markedPrice;
    }
 
    public void setMarkedPrice(Double markedPrice) {
        this.markedPrice = markedPrice;
    }
 
    public Integer getId() {
        return id;
    }
       
       public void setId(Integer id) {
        this.id=id;
    }
       
 
    public Integer getCategoryId() {
        return categoryId;
    }
       
       public void setCategoryId(Integer categoryId) {
        this.categoryId=categoryId;
    }
       
 
    public String getTitle() {
        return title;
    }
       
       public void setTitle(String title) {
        this.title=title;
    }
       
 
    public String getBriefIntroduction() {
        return briefIntroduction;
    }
       
       public void setBriefIntroduction(String briefIntroduction) {
        this.briefIntroduction=briefIntroduction;
    }
       
 
    public Integer getCarriage() {
        return carriage;
    }
       
       public void setCarriage(Integer carriage) {
        this.carriage=carriage;
    }
       
 
    public String getImgPc() {
        return imgPc;
    }
       
       public void setImgPc(String imgPc) {
        this.imgPc=imgPc;
    }
       
 
    public String getImgMobile() {
        return imgMobile;
    }
       
       public void setImgMobile(String imgMobile) {
        this.imgMobile=imgMobile;
    }
       
 
 
    public Double getPrice() {
        return price;
    }
 
       public void setPrice(Double price) {
        this.price=price;
    }
 
 
    public String getPcDetails() {
        return pcDetails;
    }
       
       public void setPcDetails(String pcDetails) {
        this.pcDetails=pcDetails;
    }
       
 
    public String getMobileDetails() {
        return mobileDetails;
    }
       
       public void setMobileDetails(String mobileDetails) {
        this.mobileDetails=mobileDetails;
    }
       
 
    public Integer getBuyLimit() {
        return buyLimit;
    }
       
       public void setBuyLimit(Integer buyLimit) {
        this.buyLimit=buyLimit;
    }
       
 
    public Integer getLimitCycle() {
        return limitCycle;
    }
       
       public void setLimitCycle(Integer limitCycle) {
        this.limitCycle=limitCycle;
    }
       
 
    public Integer getIsCanComment() {
        return isCanComment;
    }
       
       public void setIsCanComment(Integer isCanComment) {
        this.isCanComment=isCanComment;
    }
       
 
    public String getMnemonicCode() {
        return mnemonicCode;
    }
       
       public void setMnemonicCode(String mnemonicCode) {
        this.mnemonicCode=mnemonicCode;
    }
       
 
    public Integer getStatus() {
        return status;
    }
       
       public void setStatus(Integer status) {
        this.status=status;
    }
       
 
    public Integer getDsVolume() {
        return dsVolume;
    }
       
       public void setDsVolume(Integer dsVolume) {
        this.dsVolume=dsVolume;
    }
       
 
    public Integer getRsVolume() {
        return rsVolume;
    }
       
       public void setRsVolume(Integer rsVolume) {
        this.rsVolume=rsVolume;
    }
       
 
    public Integer getDelFlag() {
        return delFlag;
    }
       
       public void setDelFlag(Integer delFlag) {
        this.delFlag=delFlag;
    }
 
 
    public String getParamRefs() {
        return paramRefs;
    }
 
    public void setParamRefs(String paramRefs) {
        this.paramRefs = paramRefs;
    }
 
    public String getAttrs() {
        return attrs;
    }
 
    public void setAttrs(String attrs) {
        this.attrs = attrs;
    }
 
    public String getShopSku() {
        return shopSku;
    }
 
    public void setShopSku(String shopSku) {
        this.shopSku = shopSku;
    }
 
    public String getShopProductImg() {
        return shopProductImg;
    }
 
    public void setShopProductImg(String shopProductImg) {
        this.shopProductImg = shopProductImg;
    }
 
    public List<ShopProductParamRef> getParams() {
        return params;
    }
 
    public void setParams(List<ShopProductParamRef> params) {
        this.params = params;
    }
 
    public List<ShopProductAttrRef> getAttrRefs() {
        return attrRefs;
    }
 
    public void setAttrRefs(List<ShopProductAttrRef> attrRefs) {
        this.attrRefs = attrRefs;
    }
 
    public List<ShopSku> getSkus() {
        return skus;
    }
 
    public void setSkus(List<ShopSku> skus) {
        this.skus = skus;
    }
 
    public List<ShopProductImg> getProductImgs() {
        return productImgs;
    }
 
    public void setProductImgs(List<ShopProductImg> productImgs) {
        this.productImgs = productImgs;
    }
 
    public Integer getStartPrice() {
        return startPrice;
    }
 
    public void setStartPrice(Integer startPrice) {
        this.startPrice = startPrice;
    }
 
    public Integer getEndPrice() {
        return endPrice;
    }
 
    public void setEndPrice(Integer endPrice) {
        this.endPrice = endPrice;
    }
 
    public String getSortType() {
        return sortType;
    }
 
    public void setSortType(String sortType) {
        this.sortType = sortType;
    }
 
    public String getQueryType() {
        return queryType;
    }
 
    public void setQueryType(String queryType) {
        this.queryType = queryType;
    }
 
    public String getAttrValues() {
        return attrValues;
    }
 
    public void setAttrValues(String attrValues) {
        this.attrValues = attrValues;
    }
 
    public String getAtrid() {
        return atrid;
    }
 
    public void setAtrid(String atrid) {
        this.atrid = atrid;
    }
 
    public String getScore() {
        return score;
    }
 
    public Integer getServiceTime() {
        return serviceTime;
    }
 
    public void setServiceTime(Integer serviceTime) {
        this.serviceTime = serviceTime;
    }
 
    public void setScore(String score) {
        this.score = score;
    }
}