Administrator
2025-05-22 9bb4c9aeeb6165c08e6be165640f177f2c193627
src/main/java/cc/mrbird/febs/mall/dto/MallGoodsUpdateDto.java
@@ -11,6 +11,10 @@
@ApiModel(value = "MallGoodsUpdateDto", description = "参数接收类")
public class MallGoodsUpdateDto {
    private String storeAppId;
    private String storeGoodsId;
    private Long id;
    private String goodsNo;
@@ -20,6 +24,8 @@
    private List<MailGoodsSkuDto> mailGoodsSkuDto;
    private String thumbs;
    private String goodsParameter;
    private String goodsIntrodution;
@@ -84,4 +90,19 @@
    private Integer hasCarriage;
    private BigDecimal carriage;
    //运费方式  (1:固定运费 2:运费模板)
    private Integer carriageType;
    //运费金额
    private BigDecimal carriageAmount;
    //运费模板ID
    private Long carriageRuleId;
    //重量
    private BigDecimal goodsWeight;
    //序号
    private Integer orderNumber;
    private BigDecimal levelOnePrice;
    private BigDecimal levelTwoPrice;
    private BigDecimal levelThreePrice;
    private List<Long> couponIds;
}