Administrator
2025-08-18 a46c4d2db30c2f534400a6179cd82f7beb07a29d
src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java
@@ -16,6 +16,11 @@
@TableName("mall_goods")
public class MallGoods extends BaseEntity {
    private String storeAppId;
    private String storeGoodsId;
    private String goodsNo;
    private String goodsName;
@@ -63,6 +68,9 @@
     * 静态占比
     */
    private BigDecimal staticProp;
    @TableField(exist = false)
    private BigDecimal staticPropPrice;
    /**
     * 是否多规则 1-是 2-否
@@ -133,4 +141,8 @@
    private BigDecimal levelTwoPrice;
    private BigDecimal levelThreePrice;
    @TableField(exist = false)
    private List<Long> couponIds;
}