From 506e74747a95bb3a622d60616add2f52192ddf1b Mon Sep 17 00:00:00 2001 From: wangw <1594593906@qq.com> Date: Wed, 24 Dec 2025 14:55:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/czg/controller/NotifyController.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cash-api/order-server/src/main/java/com/czg/controller/NotifyController.java b/cash-api/order-server/src/main/java/com/czg/controller/NotifyController.java index 1b93c8760..ad5b51dc0 100644 --- a/cash-api/order-server/src/main/java/com/czg/controller/NotifyController.java +++ b/cash-api/order-server/src/main/java/com/czg/controller/NotifyController.java @@ -57,9 +57,8 @@ public class NotifyController { @RequestMapping("clear") public String clear(@RequestParam Integer shopId) { - shopUserService.updateChain().eq(ShopUser::getId, 127410).set(ShopUser::getAmount, 0); -// consumeDiscountRecordService.remove(new QueryWrapper().eq(MkShopConsumeDiscountRecord::getShopId, shopId)); -// orderInfoService.remove(new QueryWrapper().eq(OrderInfo::getShopId, shopId)); + consumeDiscountRecordService.remove(new QueryWrapper().eq(MkShopConsumeDiscountRecord::getShopId, shopId)); + orderInfoService.remove(new QueryWrapper().eq(OrderInfo::getShopId, shopId)); return "success"; }