浏览代码

下掉休闲娱乐 健身的娱乐许可证校验

ldz 1 天之前
父节点
当前提交
ada395c281
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      alien-store/src/main/java/shop/alien/store/service/impl/StoreInfoServiceImpl.java

+ 2 - 2
alien-store/src/main/java/shop/alien/store/service/impl/StoreInfoServiceImpl.java

@@ -3236,7 +3236,7 @@ public class StoreInfoServiceImpl extends ServiceImpl<StoreInfoMapper, StoreInfo
         // 过滤永久关门的店铺
         queryWrapper.ne("a.business_status", 99);
         // 过滤过期的经营许可证
-        queryWrapper.ge("a.entertainment_licence_expiration_time", new Date());
+//        queryWrapper.ge("a.entertainment_licence_expiration_time", new Date());
         // 添加商家名称模糊查询
         if (StringUtils.isNotEmpty(storeName)) {
             queryWrapper.like("a.store_name", storeName);
@@ -4036,7 +4036,7 @@ public class StoreInfoServiceImpl extends ServiceImpl<StoreInfoMapper, StoreInfo
         // 过滤永久关门的店铺
         queryWrapper.ne("a.business_status", 99);
         // 过滤过期的经营许可证
-        queryWrapper.ge("a.entertainment_licence_expiration_time", new Date());
+//        queryWrapper.ge("a.entertainment_licence_expiration_time", new Date());
         // 添加一个模糊查询,根据店铺名称进行查询
         if (StringUtils.isNotEmpty(storeName)) {
             queryWrapper.like("a.store_name", storeName);