Administrator
2025-05-28 f16f74cacb9ef0ae4be89ed15353b6a449479d8c
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;
}