xiaoyong931011
2022-06-21 39f077eff1f5bd3986f35792911ccf57716c25b6
src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java
@@ -26,6 +26,13 @@
    private String thumb;
    /**
     * ALTER TABLE `mall_goods`
     * DROP COLUMN `goods_parameter`,
     * ADD COLUMN `goods_parameter`  text NULL COMMENT '商品参数' AFTER `thumb`;
     */
    private String goodsParameter;
    private String goodsDetails;
    private Integer isSale;
@@ -96,8 +103,16 @@
    private List<MallGoodsStyle> styles;
    @TableField(exist = false)
    private List<MallGoodsSku> skus;
    @TableField(exist = false)
    private List<String> images;
    @TableField(exist = false)
    private String orderNo;
    private Integer hasCarriage;
    private BigDecimal carriage;
}