fix
Helius
2022-05-27 5ec06c513fd1060c9a91c9205bb2f0b96ca2ee2a
src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java
@@ -82,9 +82,26 @@
     */
    private BigDecimal costPrice;
    /**
     * 商品类型 1-付费商品 2-积分商品
     */
    private Integer goodsType;
    /**
     * 积分
     */
    private BigDecimal score;
    @TableField(exist = false)
    private List<MallGoodsStyle> styles;
    @TableField(exist = false)
    private List<MallGoodsSku> skus;
    @TableField(exist = false)
    private List<String> images;
    @TableField(exist = false)
    private String orderNo;
}