xiaoyong931011
2023-02-10 8fd05c6fd4b970cd86ec2341d1bd39e20ecc407f
src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java
@@ -44,6 +44,22 @@
    @ApiModelProperty(value = "积分")
    private BigDecimal score;
    @ApiModelProperty(value = "是否有运费 1-是 2-包邮")
    @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;
}