From f61293e97bb2cb21c8f49e88b1ae5a3cbadefb6a Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 25 Dec 2023 16:40:09 +0800 Subject: [PATCH] 富文本框输入版本变化 --- src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java b/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java index 369b65b..937c350 100644 --- a/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java +++ b/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java @@ -26,16 +26,12 @@ 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; + private Integer isApp; /** * 上架 @@ -52,6 +48,11 @@ private Long categoryId; + /** + * 是否热卖 1:是 2:否 + */ + public static final Integer ISHOT_STATE_YES = 1; + public static final Integer ISHOT_STATE_NO = 2; private Integer isHot; /** @@ -115,4 +116,6 @@ private BigDecimal carriage; + private String wxCodeImg; + } -- Gitblit v1.9.1