ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserShopController.java
@@ -52,7 +52,7 @@ */ @PostMapping("/delAppUserShop") public R delAppUserShop(@RequestBody AppUserShop appUserShop){ LambdaUpdateWrapper<AppUserShop> wrapper = new LambdaUpdateWrapper<>(); LambdaQueryWrapper<AppUserShop> wrapper = new LambdaQueryWrapper<>(); if(null != appUserShop.getAppUserId()){ wrapper.eq(AppUserShop::getAppUserId, appUserShop.getAppUserId()); } ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java
@@ -256,7 +256,7 @@ //删除用户门店关系数据 AppUserShop appUserShop = new AppUserShop(); appUserShop.setShopId(shop.getId()); appUserShop.setAppUserId(sysUser.getUserId()); appUserShop.setAppUserId(appUser.getId()); appUserShopClient.delAppUserShop(appUserShop); } }