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); }