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/VExpertfeeExpertController.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/VExpertfeeExpertController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/VExpertfeeExpertController.java
index e954185..29e533a 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/VExpertfeeExpertController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/VExpertfeeExpertController.java
@@ -36,7 +36,7 @@
      * 鏌ヨVIEW鍒楄〃
      */
     @ApiOperation("鏌ヨVIEW鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('system:expert:list')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:list')")
     @GetMapping("/list")
     public TableDataInfo list(VExpertfeeExpert vExpertfeeExpert)
     {
@@ -49,7 +49,7 @@
      * 瀵煎嚭VIEW鍒楄〃
      */
     @ApiOperation("瀵煎嚭VIEW鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('system:expert:export')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:export')")
     @Log(title = "VIEW", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
     public AjaxResult export(VExpertfeeExpert vExpertfeeExpert)
@@ -63,7 +63,7 @@
      * 鑾峰彇VIEW璇︾粏淇℃伅
      */
     @ApiOperation("鑾峰彇VIEW璇︾粏淇℃伅")
-    @PreAuthorize("@ss.hasPermi('system:expert:query')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:query')")
     @GetMapping(value = "/{fundTaxId}")
     public AjaxResult getInfo(@PathVariable("fundTaxId") Long fundTaxId)
     {
@@ -74,7 +74,7 @@
      * 鏂板VIEW
      */
     @ApiOperation("鏂板VIEW")
-    @PreAuthorize("@ss.hasPermi('system:expert:add')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:add')")
     @Log(title = "VIEW", businessType = BusinessType.INSERT)
     @PostMapping
     @RepeatSubmit
@@ -87,7 +87,7 @@
      * 淇敼VIEW
      */
     @ApiOperation("淇敼VIEW")
-    @PreAuthorize("@ss.hasPermi('system:expert:edit')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:edit')")
     @Log(title = "VIEW", businessType = BusinessType.UPDATE)
     @PutMapping
     @RepeatSubmit    
@@ -100,7 +100,7 @@
      * 鍒犻櫎VIEW
      */
     @ApiOperation("鍒犻櫎VIEW")
-    @PreAuthorize("@ss.hasPermi('system:expert:remove')")
+    // @PreAuthorize("@ss.hasPermi('system:expert:remove')")
     @Log(title = "VIEW", businessType = BusinessType.DELETE)
     @DeleteMapping("/{fundTaxIds}")
     public AjaxResult remove(@PathVariable Long[] fundTaxIds)

--
Gitblit v1.9.3