xiaoyong931011
2023-03-06 d977a3c05741085c21adde73235480e2e4a96025
src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
@@ -68,4 +68,26 @@
    @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;
}