Administrator
6 days ago 6e3fcdbde6ad62832753ddc8d3e1429f29ea58ee
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
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2021-09-17
 **/
@Data
@ApiModel(value = "MallGoodsListVo", description = "商城商品列表")
public class MallGoodsListVo {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "规格ID")
    private Long skuId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "商品介绍")
    private String goodsIntroduction;
 
    @ApiModelProperty(value = "主图")
    private String thumb;
 
    @ApiModelProperty(value = "原价")
    private String originalPrice;
 
    @ApiModelProperty(value = "现价")
    private String presentPrice;
 
    @ApiModelProperty(value = "销量")
    private String saleVolume;
 
    @ApiModelProperty(value = "库存")
    private String stock;
 
    @ApiModelProperty(value = "积分")
    private BigDecimal score;
 
    @ApiModelProperty(value = "是否有运费 1-是 2-包邮 (不使用了)")
    private Integer hasCarriage;
    //运费方式  (1:固定运费 2:运费模板)
 
    @ApiModelProperty(value = "运费方式  (1:固定运费 2:运费模板)")
    private Integer carriageType;
    //运费金额
 
    @ApiModelProperty(value = "固定运费金额")
    private BigDecimal carriageAmount;
    //运费模板ID
 
    @ApiModelProperty(value = "运费模板ID")
    private Long carriageRuleId;
    //重量
 
    @ApiModelProperty(value = "重量")
    private BigDecimal goodsWeight;
 
    @ApiModelProperty(value = "单位")
    private String unit;
 
    @ApiModelProperty(value = "1级代理价格")
    private BigDecimal levelOnePrice;
 
    @ApiModelProperty(value = "2级代理价格")
    private BigDecimal levelTwoPrice;
 
    @ApiModelProperty(value = "3级代理价格")
    private BigDecimal levelThreePrice;
 
    @ApiModelProperty(value = "是否收藏")
    private Integer hasCollect;
 
    @ApiModelProperty(value = "销量排名")
    private Integer rank;
}