From 9ea8edde96272e14b0deacb81996a65c4fcb5285 Mon Sep 17 00:00:00 2001 From: lige <bestlige@outlook.com> Date: 星期三, 13 九月 2023 16:49:18 +0800 Subject: [PATCH] 修改接口权限 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java index cc9f955..22176b4 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java @@ -52,7 +52,7 @@ /** * 鏌ヨ浣撴鍏朵粬妫�娴嬪垪琛� */ - @PreAuthorize("@ss.hasPermi('system:check:list')") + //@PreAuthorize("@ss.hasPermi('system:check:list')") @GetMapping("/list") @ApiOperation(value = "鏌ヨ浣撴鍏朵粬妫�娴嬪垪琛�") public TableDataInfo list(TjOtherCheck tjOtherCheck) { @@ -102,7 +102,7 @@ /** * 瀵煎嚭浣撴鍏朵粬妫�娴嬪垪琛� */ - @PreAuthorize("@ss.hasPermi('system:check:export')") + //@PreAuthorize("@ss.hasPermi('system:check:export')") @Log(title = "浣撴鍏朵粬妫�娴�", businessType = BusinessType.EXPORT) @PostMapping("/export") @ApiOperation(value = "瀵煎嚭浣撴鍏朵粬妫�娴嬪垪琛�") @@ -115,7 +115,7 @@ /** * 鑾峰彇浣撴鍏朵粬妫�娴嬭缁嗕俊鎭� */ - @PreAuthorize("@ss.hasPermi('system:check:query')") + //@PreAuthorize("@ss.hasPermi('system:check:query')") @GetMapping(value = "/{id}") @ApiOperation(value = "鑾峰彇浣撴鍏朵粬妫�娴嬭缁嗕俊鎭�") public AjaxResult getInfo(@PathVariable("id") String id) { @@ -125,7 +125,7 @@ /** * 鏂板浣撴鍏朵粬妫�娴� */ - @PreAuthorize("@ss.hasPermi('system:check:add')") + //@PreAuthorize("@ss.hasPermi('system:check:add')") @Log(title = "浣撴鍏朵粬妫�娴�", businessType = BusinessType.INSERT) @PostMapping @ApiOperation(value = "鏂板浣撴鍏朵粬妫�娴�") @@ -136,7 +136,7 @@ /** * 淇敼浣撴鍏朵粬妫�娴� */ - @PreAuthorize("@ss.hasPermi('system:check:edit')") + //@PreAuthorize("@ss.hasPermi('system:check:edit')") @Log(title = "浣撴鍏朵粬妫�娴�", businessType = BusinessType.UPDATE) @PutMapping @ApiOperation(value = "淇敼浣撴鍏朵粬妫�娴�") @@ -147,7 +147,7 @@ /** * 鍒犻櫎浣撴鍏朵粬妫�娴� */ - @PreAuthorize("@ss.hasPermi('system:check:remove')") + //@PreAuthorize("@ss.hasPermi('system:check:remove')") @Log(title = "浣撴鍏朵粬妫�娴�", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") @ApiOperation(value = "鍒犻櫎浣撴鍏朵粬妫�娴�") -- Gitblit v1.8.0