From e48029a9a483c67a0e201c23b13149ad974609e8 Mon Sep 17 00:00:00 2001 From: yijiegong Date: Wed, 28 Aug 2024 13:34:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=BF=E5=91=8A=E6=9F=A5=E8=AF=A2bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ysk/cashier/mybatis/service/impl/TbShopAdServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/service/impl/TbShopAdServiceImpl.java b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/service/impl/TbShopAdServiceImpl.java index c1d0c3d4..1fc80746 100644 --- a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/service/impl/TbShopAdServiceImpl.java +++ b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/service/impl/TbShopAdServiceImpl.java @@ -96,6 +96,8 @@ public class TbShopAdServiceImpl extends ServiceImpl i return ResponseEntity.badRequest().body("店铺ID不能为空"); } + wrapper.eq("shop_id", params.get("shopId")); + if (StrUtil.isNotBlank((String) params.get("status"))) { wrapper.eq("status", params.get("status")); }