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;
@@ -64,6 +69,9 @@
     */
    private BigDecimal staticProp;
    @TableField(exist = false)
    private BigDecimal staticPropPrice;
    /**
     * 是否多规则 1-是 2-否
     */
@@ -111,6 +119,9 @@
    @TableField(exist = false)
    private String orderNo;
    @TableField(exist = false)
    private Integer hasCollect;
    private Integer hasCarriage;
    private BigDecimal carriage;
@@ -126,5 +137,12 @@
    private BigDecimal goodsWeight;
    //序号
    private Integer orderNumber;
    private BigDecimal levelOnePrice;
    private BigDecimal levelTwoPrice;
    private BigDecimal levelThreePrice;
    @TableField(exist = false)
    private List<Long> couponIds;
}