From 9b4e0ce5047566e585e67c8d3961f3013d4f9b16 Mon Sep 17 00:00:00 2001 From: hayu <1604366271@qq.com> Date: Fri, 7 Nov 2025 17:10:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8F=E8=AE=AE=E6=96=B0=E5=A2=9E=E3=80=81?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E3=80=81=E5=88=A0=E9=99=A4=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/controller/BmAgreementInfoController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bonus-modules/bonus-material/src/main/java/com/bonus/material/basic/controller/BmAgreementInfoController.java b/bonus-modules/bonus-material/src/main/java/com/bonus/material/basic/controller/BmAgreementInfoController.java index 4845406d..37cbd708 100644 --- a/bonus-modules/bonus-material/src/main/java/com/bonus/material/basic/controller/BmAgreementInfoController.java +++ b/bonus-modules/bonus-material/src/main/java/com/bonus/material/basic/controller/BmAgreementInfoController.java @@ -82,7 +82,7 @@ public class BmAgreementInfoController extends BaseController */ @ApiOperation(value = "新增协议管理") @PreventRepeatSubmit - //@RequiresPermissions("basic:info:add") + @RequiresPermissions("basic:info:add") @SysLog(title = "协议管理", businessType = OperaType.INSERT, logType = 1,module = "仓储管理->新增协议管理") @PostMapping public AjaxResult add(@RequestBody BmAgreementInfo bmAgreementInfo) @@ -99,7 +99,7 @@ public class BmAgreementInfoController extends BaseController */ @ApiOperation(value = "修改协议管理") @PreventRepeatSubmit - //@RequiresPermissions("basic:info:edit") + @RequiresPermissions("basic:info:edit") @SysLog(title = "协议管理", businessType = OperaType.UPDATE, logType = 1,module = "仓储管理->修改协议管理") @PutMapping public AjaxResult edit(@RequestBody BmAgreementInfo bmAgreementInfo) @@ -112,7 +112,7 @@ public class BmAgreementInfoController extends BaseController */ @ApiOperation(value = "删除协议管理") @PreventRepeatSubmit - //@RequiresPermissions("basic:info:remove") + @RequiresPermissions("basic:info:remove") @SysLog(title = "协议管理", businessType = OperaType.DELETE, logType = 1,module = "仓储管理->删除协议管理") @DeleteMapping("/{agreementId}") public AjaxResult remove(@PathVariable("agreementId") Long agreementId)