From c92df6e57423bfbd71c4b228337d99b7653755bd Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期五, 28 二月 2025 16:31:16 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang

---
 ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysUserController.java |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysUserController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysUserController.java
index 310a24a..24335f4 100644
--- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysUserController.java
+++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysUserController.java
@@ -232,7 +232,6 @@
 
 
 //    @Log(title = "用户管理", businessType = BusinessType.EXPORT)
-////    // @PreAuthorize("@ss.hasPermi('system:user:export')")
 //    @PostMapping("/export")
 //    public void export(HttpServletResponse response, SysUser user)
 //    {
@@ -242,7 +241,6 @@
 //    }
 
 //    @Log(title = "用户管理", businessType = BusinessType.IMPORT)
-////    // @PreAuthorize("@ss.hasPermi('system:user:import')")
 //    @PostMapping("/importData")
 //    public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
 //    {
@@ -264,7 +262,6 @@
     /**
      * 新增用户
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:add')")
     @ApiOperation(value = "新增用户管理")
     @Log(title = "用户信息-新增用户", businessType = BusinessType.INSERT)
     @PostMapping("/add")
@@ -288,7 +285,6 @@
     /**
      * 修改用户
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:edit')")
     @ApiOperation(value = "修改用户管理")
     @Log(title = "用户信息-修改用户", businessType = BusinessType.UPDATE)
     @PostMapping("/edit")
@@ -314,7 +310,6 @@
     /**
      * 删除用户
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:remove')")
     @ApiOperation(value = "批量删除用户")
     @Log(title = "用户信息-批量删除用户", businessType = BusinessType.DELETE)
     @DeleteMapping("/deleteById/{ids}")
@@ -335,7 +330,6 @@
     /**
      * 重置密码
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:resetPwd')")
     @ApiOperation(value = "重置密码")
     @Log(title = "用户信息-重置密码", businessType = BusinessType.UPDATE)
     @PostMapping("/resetPwd")
@@ -367,7 +361,6 @@
     /**
      * 根据用户编号获取授权角色
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:query')")
     @GetMapping("/authRole/{userId}")
     public AjaxResult authRole(@PathVariable("userId") Long userId)
     {
@@ -382,7 +375,6 @@
     /**
      * 用户授权角色
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:edit')")
     @Log(title = "用户管理", businessType = BusinessType.GRANT)
     @PutMapping("/authRole")
     public AjaxResult insertAuthRole(Long userId, Long[] roleIds)
@@ -395,7 +387,6 @@
     /**
      * 获取部门树列表
      */
-    // @PreAuthorize("@ss.hasPermi('system:user:list')")
     @GetMapping("/deptTree")
     public AjaxResult deptTree(SysDept dept)
     {

--
Gitblit v1.7.1