From c8e3460c5aefedfa45dc19a7a8d5720a10d0f058 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 23 Sep 2025 15:38:44 +0800
Subject: [PATCH] feat(ai): 引入LlmApplicationAppIdEnum枚举优化工作流类型管理
---
src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 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 c453da9..ef7b6e2 100644
--- a/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java
+++ b/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;
@@ -130,4 +141,8 @@
private BigDecimal levelTwoPrice;
private BigDecimal levelThreePrice;
+
+ @TableField(exist = false)
+ private List<Long> couponIds;
+
}
--
Gitblit v1.9.1