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