From dcde5c5a68b94c0841fa70c6e03fe780d0e84993 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Fri, 22 Dec 2023 15:15:57 +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