From 0a84c5d4bfaa576ecd8695353e316178f89cb70d Mon Sep 17 00:00:00 2001 From: liquanyu Date: Wed, 28 Mar 2018 15:04:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E6=A3=80=E5=88=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/permission/service/impl/CouponServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java index 451f31a..ab8d63b 100644 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java @@ -184,7 +184,7 @@ public class CouponServiceImpl implements CouponService { { Integer type = Integer.parseInt(map.get("type").toString()); Integer showStart = Integer.parseInt(map.get("show_start").toString()); - if (type == 2 && showStart >= start) + if (type == 2 && showStart <= start) { list.add(map); } @@ -193,7 +193,7 @@ public class CouponServiceImpl implements CouponService { { Integer type = Integer.parseInt(map.get("type").toString()); Integer showStart = Integer.parseInt(map.get("show_start").toString()); - if (type == 6 && showStart >= start) + if (type == 6 && showStart <= start) { list.add(map); } -- 1.8.3.1