From 94d774ee91be8785b03a8b59d694c3f412dd92ab Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期五, 29 八月 2025 09:18:29 +0800
Subject: [PATCH] update
---
cloud-server-management/src/main/java/com/dsh/course/feignClient/activity/model/Coupon.java | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/cloud-server-management/src/main/java/com/dsh/course/feignClient/activity/model/Coupon.java b/cloud-server-management/src/main/java/com/dsh/course/feignClient/activity/model/Coupon.java
index fa8977e..849ebd9 100644
--- a/cloud-server-management/src/main/java/com/dsh/course/feignClient/activity/model/Coupon.java
+++ b/cloud-server-management/src/main/java/com/dsh/course/feignClient/activity/model/Coupon.java
@@ -77,11 +77,17 @@
/**
* 开始时间
*/
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date startTime;
/**
* 结束时间
*/
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date endTime;
+ /**
+ * 有效期
+ */
+ private String timeValue;
/**
* 使用范围(1=全国,2=指定城市,3=指定门店)
*/
@@ -126,5 +132,16 @@
* 城市管理者id
*/
private Integer cityManagerId;
+ /**
+ * 积分商品id
+ */
+ private Integer goodsId;
+ /**
+ * 数量
+ */
+ private Integer count;
+ private String useScopeValue;
+ private String typeValue;
+ private String userPopulationValue;
}
--
Gitblit v1.7.1