Commit 0a84c5d4bfaa576ecd8695353e316178f89cb70d

Authored by liquanyu
1 parent ab6e26fe7e

产检券

Showing 1 changed file with 2 additions and 2 deletions

platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java View file @ 0a84c5d
... ... @@ -184,7 +184,7 @@
184 184 {
185 185 Integer type = Integer.parseInt(map.get("type").toString());
186 186 Integer showStart = Integer.parseInt(map.get("show_start").toString());
187   - if (type == 2 && showStart >= start)
  187 + if (type == 2 && showStart <= start)
188 188 {
189 189 list.add(map);
190 190 }
... ... @@ -193,7 +193,7 @@
193 193 {
194 194 Integer type = Integer.parseInt(map.get("type").toString());
195 195 Integer showStart = Integer.parseInt(map.get("show_start").toString());
196   - if (type == 6 && showStart >= start)
  196 + if (type == 6 && showStart <= start)
197 197 {
198 198 list.add(map);
199 199 }