From a5d4f5da140e15781f1b39a49876104ce398b178 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期三, 18 九月 2024 14:33:42 +0800
Subject: [PATCH] 1.优惠券-活动优惠券-增加领取时间的结束时间小于当前时间则不可以发布

---
 src/main/resources/mapper/coupon/CouponRecordMapperCustom.xml |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/coupon/CouponRecordMapperCustom.xml b/src/main/resources/mapper/coupon/CouponRecordMapperCustom.xml
index 4b1c2e9..7970cda 100644
--- a/src/main/resources/mapper/coupon/CouponRecordMapperCustom.xml
+++ b/src/main/resources/mapper/coupon/CouponRecordMapperCustom.xml
@@ -118,6 +118,11 @@
         <if test="param.couponId != null and param.couponId != ''">
             and t.coupon_id =  #{param.couponId}
         </if>
+        <if test="param.category != null and param.category != ''">
+            and t.category =  #{param.category}
+        </if>
+
+
 
         order by t.create_time desc
     </sql>

--
Gitblit v1.9.3