Administrator
2025-04-28 ec707650a0a1a0bd3a5fc470cb67bb4b01ddca13
src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
@@ -4,6 +4,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
/**
@@ -17,11 +18,17 @@
    @ApiModelProperty(value = "id")
    private Long id;
    @ApiModelProperty(value = "商品主图")
    private String thumb;
    @ApiModelProperty(value = "商品编号")
    private String goodsNo;
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
    @ApiModelProperty(value = "商品参数")
    private String goodsParameter;
    @ApiModelProperty(value = "商品介绍")
    private String goodsIntrodution;
@@ -38,9 +45,67 @@
    @ApiModelProperty(value = "是否上架 1-上架 2-下架")
    private Integer isSale;
    @ApiModelProperty(value = "库存")
    private Integer stock;
    @ApiModelProperty(value = "销量")
    private Integer volume;
    @ApiModelProperty(value = "商品类型")
    private Integer goodsType;
    @ApiModelProperty(value = "积分")
    private BigDecimal score;
    @ApiModelProperty(value = "是否有运费")
    private Integer hasCarriage;
    @ApiModelProperty(value = "运费")
    private BigDecimal carriage;
    @ApiModelProperty(value = "1-普通商品 2-套餐")
    private Integer isNormal;
    @ApiModelProperty(value = "轮播图")
    private List<String> images;
    @ApiModelProperty(value = "样式")
    private List<GoodsDetailsStyleVo> styles;
    @ApiModelProperty(value = "评论数量")
    private Integer commentCount;
    //运费方式  (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 String mainImage;
}