From 63ebc0007e9958bd6680c6841a7460b053275790 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 22 四月 2024 14:20:15 +0800
Subject: [PATCH] 将 @PreAuthorize 全部注释

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailSharedController.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailSharedController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailSharedController.java
index d5434c0..6947aad 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailSharedController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementdetailSharedController.java
@@ -42,7 +42,7 @@
      * 鏌ヨ鎶ラ攢鐢宠鏄庣粏鍒楄〃
      */
     @ApiOperation("鏌ヨ鎶ラ攢鐢宠鏄庣粏鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:list')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:list')")
     @GetMapping("/list")
     public TableDataInfo list(ServiceReimbursementdetailShared serviceReimbursementdetailShared)
     {
@@ -55,7 +55,7 @@
      * 瀵煎嚭鎶ラ攢鐢宠鏄庣粏鍒楄〃
      */
     @ApiOperation("瀵煎嚭鎶ラ攢鐢宠鏄庣粏鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:export')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:export')")
     @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
     public AjaxResult export(ServiceReimbursementdetailShared serviceReimbursementdetailShared)
@@ -69,7 +69,7 @@
      * 鑾峰彇鎶ラ攢鐢宠鏄庣粏璇︾粏淇℃伅
      */
     @ApiOperation("鑾峰彇鎶ラ攢鐢宠鏄庣粏璇︾粏淇℃伅")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:query')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:query')")
     @GetMapping(value = "/{id}")
     public AjaxResult getInfo(@PathVariable("id") Long id)
     {
@@ -80,7 +80,7 @@
      * 鏂板鎶ラ攢鐢宠鏄庣粏
      */
     @ApiOperation("鏂板鎶ラ攢鐢宠鏄庣粏")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:add')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:add')")
     @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.INSERT)
     @PostMapping("/add")
     @RepeatSubmit
@@ -94,7 +94,7 @@
      * 淇敼鎶ラ攢鐢宠鏄庣粏
      */
     @ApiOperation("淇敼鎶ラ攢鐢宠鏄庣粏")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:edit')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:edit')")
     @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.UPDATE)
     @PostMapping("/edit")
     @RepeatSubmit    
@@ -107,7 +107,7 @@
      * 鍒犻櫎鎶ラ攢鐢宠鏄庣粏
      */
     @ApiOperation("鍒犻櫎鎶ラ攢鐢宠鏄庣粏")
-    @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:remove')")
+    // @PreAuthorize("@ss.hasPermi('project:reimbursementdetailshared:remove')")
     @Log(title = "鎶ラ攢鐢宠鏄庣粏", businessType = BusinessType.DELETE)
     @GetMapping("/remove/{ids}")
     public AjaxResult remove(@PathVariable Long[] ids)

--
Gitblit v1.9.3