From 618517e7ad4e3e7e9865c324cdabd90bf8ef8d17 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 21 三月 2024 16:54:14 +0800 Subject: [PATCH] 核算权限注释 --- ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java b/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java index 5e33e12..1b5fdb9 100644 --- a/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java +++ b/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java @@ -44,7 +44,7 @@ /** * 瀵煎嚭鑰冩牳璁″垎鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('platform:score:export')") +// @PreAuthorize("@ss.hasPermi('platform:score:export')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, TExamineScore tExamineScore) @@ -57,7 +57,7 @@ /** * 鑾峰彇鑰冩牳璁″垎璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('platform:score:query')") +// @PreAuthorize("@ss.hasPermi('platform:score:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -67,7 +67,7 @@ /** * 鏂板鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:add')") +// @PreAuthorize("@ss.hasPermi('platform:score:add')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody TExamineScore tExamineScore) @@ -78,7 +78,7 @@ /** * 淇敼鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:edit')") +// @PreAuthorize("@ss.hasPermi('platform:score:edit')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody TExamineScore tExamineScore) @@ -89,7 +89,7 @@ /** * 鍒犻櫎鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:remove')") +// @PreAuthorize("@ss.hasPermi('platform:score:remove')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) -- Gitblit v1.8.0