fix
Hentua
2023-04-25 2ccfd486a7e82b71bbac81d121a7c5dae752db4d
src/main/java/cc/mrbird/febs/mall/dto/MallGoodsUpdateDto.java
@@ -4,6 +4,7 @@
import io.swagger.annotations.ApiModel;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@Data
@@ -19,6 +20,8 @@
    private List<MailGoodsSkuDto> mailGoodsSkuDto;
    private String thumbs;
    private String goodsParameter;
    private String goodsIntrodution;
@@ -37,4 +40,71 @@
    private Long categoryId;
    private Integer isHot;
    /**
     * 库存
     */
    private Integer stock;
    /**
     * 销量
     */
    private Integer volume;
    /**
     * 成本价
     */
    private BigDecimal costPrice;
    /**
     * 静态倍数
     */
    private BigDecimal staticMulti;
    /**
     * 静态占比
     */
    private BigDecimal staticProp;
    /**
     * 是否多规则 1-是 2-否
     */
    private Integer isSku;
    /**
     * 是否普通商品 1-普通商品 2-套餐
     */
    private Integer isNormal;
    private BigDecimal score;
    private Integer goodsType;
    private List<Long> delSkuId;
    private Integer hasCarriage;
    private BigDecimal carriage;
    private BigDecimal star;
    /**
     * 排序位置
     */
    private Integer sortCnt;
    /**
     * 积分兑换比例
     */
    private Integer scorePercent;
    private Integer goodsLevel;
    /**
     * 普通商品分红百分比
     */
    private Integer normalPer;
    /**
     * 普通商品分红百分比
     */
    private Integer normalBonus;
}