From 042936ba89e122bece0e4ce595c68f859b9e9bed Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期三, 17 四月 2024 17:53:43 +0800 Subject: [PATCH] 工单下发:新增互斥锁、下发记录 --- ycl-server/src/main/java/com/ycl/platform/controller/CheckPublishController.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/CheckPublishController.java b/ycl-server/src/main/java/com/ycl/platform/controller/CheckPublishController.java index 06fbe5c..611828b 100644 --- a/ycl-server/src/main/java/com/ycl/platform/controller/CheckPublishController.java +++ b/ycl-server/src/main/java/com/ycl/platform/controller/CheckPublishController.java @@ -32,7 +32,7 @@ /** * 鏌ヨ鑰冩牳鍙戝竷鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:publish:list')") +// @PreAuthorize("@ss.hasPermi('system:publish:list')") @GetMapping("/list") public TableDataInfo list(CheckPublish checkPublish) { @@ -57,7 +57,7 @@ /** * 鑾峰彇鑰冩牳鍙戝竷璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:publish:query')") +// @PreAuthorize("@ss.hasPermi('system:publish:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -67,7 +67,7 @@ /** * 鏂板鑰冩牳鍙戝竷 */ - @PreAuthorize("@ss.hasPermi('system:publish:add')") +// @PreAuthorize("@ss.hasPermi('system:publish:add')") @Log(title = "鑰冩牳鍙戝竷", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody CheckPublish checkPublish) -- Gitblit v1.8.0