From 907641e56c2085aaa81f267946dc3e3e9fca73e7 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 18 九月 2024 09:39:02 +0800
Subject: [PATCH] 代码提交

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

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/BaseUserInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/BaseUserInfoController.java
index 8faf264..2d7d307 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/BaseUserInfoController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/BaseUserInfoController.java
@@ -35,7 +35,7 @@
      * 鏌ヨ鐢ㄦ埛鍒楄〃
      */
     @ApiOperation("鏌ヨ鐢ㄦ埛鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('system:info:list')")
+    //@PreAuthorize("@ss.hasPermi('system:info:list')")
     @PostMapping("/list")
     public TableDataInfo list(@RequestBody BaseUserInfo baseUserInfo) {
         startPage();
@@ -47,7 +47,7 @@
      * 瀵煎嚭鐢ㄦ埛鍒楄〃
      */
     @ApiOperation("瀵煎嚭鐢ㄦ埛鍒楄〃")
-    @PreAuthorize("@ss.hasPermi('system:info:export')")
+    //@PreAuthorize("@ss.hasPermi('system:info:export')")
     @Log(title = "鐢ㄦ埛" , businessType = BusinessType.EXPORT)
     @PostMapping("/export")
     public void export(HttpServletResponse response, BaseUserInfo baseUserInfo) {
@@ -60,7 +60,7 @@
      * 鑾峰彇鐢ㄦ埛璇︾粏淇℃伅
      */
     @ApiOperation("鑾峰彇鐢ㄦ埛璇︾粏淇℃伅")
-    @PreAuthorize("@ss.hasPermi('system:info:query')")
+    //@PreAuthorize("@ss.hasPermi('system:info:query')")
     @GetMapping(value = "/{userid}")
     public AjaxResult getInfo(@PathVariable("userid") Long userid) {
         return success(baseUserInfoService.selectBaseUserInfoByUserid(userid));
@@ -70,7 +70,7 @@
      * 鏂板鐢ㄦ埛
      */
     @ApiOperation("鏂板鐢ㄦ埛")
-    @PreAuthorize("@ss.hasPermi('system:info:add')")
+    //@PreAuthorize("@ss.hasPermi('system:info:add')")
     @Log(title = "鐢ㄦ埛" , businessType = BusinessType.INSERT)
     @PostMapping("/add")
     public AjaxResult add(@RequestBody BaseUserInfo baseUserInfo) {
@@ -81,7 +81,7 @@
      * 淇敼鐢ㄦ埛
      */
     @ApiOperation("淇敼鐢ㄦ埛")
-    @PreAuthorize("@ss.hasPermi('system:info:edit')")
+    //@PreAuthorize("@ss.hasPermi('system:info:edit')")
     @Log(title = "鐢ㄦ埛" , businessType = BusinessType.UPDATE)
     @PostMapping("/edit")
     public AjaxResult edit(@RequestBody BaseUserInfo baseUserInfo) {
@@ -92,7 +92,7 @@
      * 鍒犻櫎鐢ㄦ埛
      */
     @ApiOperation("鍒犻櫎鐢ㄦ埛")
-    @PreAuthorize("@ss.hasPermi('system:info:remove')")
+    //@PreAuthorize("@ss.hasPermi('system:info:remove')")
     @Log(title = "鐢ㄦ埛" , businessType = BusinessType.DELETE)
     @GetMapping("/remove/{userids}")
     public AjaxResult remove(@PathVariable Long[] userids) {

--
Gitblit v1.9.3