From 932295c664fd305765950263cc3193d3e8b3acd9 Mon Sep 17 00:00:00 2001 From: tangqian Date: Tue, 20 Jun 2023 12:10:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A2=E5=8D=95=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=A4=87=E6=B3=A8=E5=92=8C=E8=AE=A2=E5=8D=95=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/admin/recharge/RechargeOrderController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java b/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java index 525a294d6..43d1fa607 100644 --- a/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java +++ b/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java @@ -204,10 +204,10 @@ public class RechargeOrderController { } @TenantIgnore - @PreAuthenticated +// @PreAuthenticated @Operation(summary = "管理员填写备注") @RequestMapping(value = "/adminRemark", method = RequestMethod.POST) - @PreAuthorize("@ss.hasPermission('shop:recharge-order:remark')") +// @PreAuthorize("@ss.hasPermission('shop:recharge-order:remark')") public CommonResult adminRemark(@Valid @RequestBody RemarkRequest request) { return CommonResult.success(rechargeOrderService.updateRemark(request)); }