From d1acc9da712860b46d7114dca6ecbef9fc447a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=9D=BE?= <8605635+zhang3064194730@user.noreply.gitee.com> Date: Fri, 24 Oct 2025 09:54:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=99=E9=A2=9D=E5=BC=80=E5=85=B3=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E6=A8=A1=E5=9D=97=E5=BD=B1=E5=93=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/czg/account/service/ShopConfigService.java | 2 +- .../account/service/impl/FreeDineConfigServiceImpl.java | 2 +- .../account/service/impl/ShopConfigServiceImpl.java | 8 +++++--- .../market/service/impl/MkConsumeCashbackServiceImpl.java | 2 +- .../market/service/impl/MkShopRechargeServiceImpl.java | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopConfigService.java b/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopConfigService.java index 565539b4e..aae84f595 100644 --- a/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopConfigService.java +++ b/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopConfigService.java @@ -14,5 +14,5 @@ import java.util.List; */ public interface ShopConfigService extends IService { - void editStatusByShopIdList(Long mainShopId, Integer isEnable, LambdaGetter property, String useShopType, List shopIdList); + void editStatusByShopIdList(Long mainShopId, Integer isEnable, boolean onyUpValid, LambdaGetter property, String useShopType, List shopIdList); } diff --git a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/FreeDineConfigServiceImpl.java b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/FreeDineConfigServiceImpl.java index 61a620a78..3c2b2eea8 100644 --- a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/FreeDineConfigServiceImpl.java +++ b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/FreeDineConfigServiceImpl.java @@ -61,7 +61,7 @@ public class FreeDineConfigServiceImpl extends ServiceImpl void editStatusByShopIdList(Long mainShopId, Integer isEnable, LambdaGetter property, String useShopType, List shopIdList) { + public void editStatusByShopIdList(Long mainShopId, Integer isEnable, boolean onyUpValid, LambdaGetter property, String useShopType, List shopIdList) { ShopConfig shopConfig = getOne(new QueryWrapper().eq(ShopConfig::getId, mainShopId)); if (shopConfig == null) { shopConfig = new ShopConfig(); @@ -56,7 +56,7 @@ public class ShopConfigServiceImpl extends ServiceImpl { or.eq(ShopConfig::getMainId, mainShopId); }).or(or -> { @@ -73,7 +73,9 @@ public class ShopConfigServiceImpl extends ServiceImpl