From 34f741f39e22bf48df33321230380b40c23110c3 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期五, 18 四月 2025 21:34:13 +0800
Subject: [PATCH] 店铺、积分、订单

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/SeckillActivityInfo.java |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/SeckillActivityInfo.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/SeckillActivityInfo.java
index f5b4a3a..5bbecd7 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/SeckillActivityInfo.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/SeckillActivityInfo.java
@@ -9,6 +9,7 @@
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.math.BigDecimal;
 import java.time.LocalDateTime;
 import java.util.List;
 
@@ -48,9 +49,9 @@
     @TableField("max_num")
     private Integer maxNum;
 
-    @ApiModelProperty(value = "适用会员类型")
+ /*   @ApiModelProperty(value = "适用会员类型")
     @TableField("vip_ids")
-    private String vipIds;
+    private String vipIds;*/
 
     @ApiModelProperty(value = "活动开始日期")
     @TableField("start_time")
@@ -68,8 +69,12 @@
     @TableField("is_shelves")
     private Integer isShelves;
 
+    @ApiModelProperty(value = "活动价格")
     @TableField(exist = false)
-    private List<GoodsSeckill> goodsSeckills;
+    private BigDecimal sellingPrice;
+
+    @TableField(exist = false)
+    private GoodsSeckill goodsSeckills;
 
     @TableField(exist = false)
     private Goods goods;

--
Gitblit v1.7.1