xiangpei
2025-02-12 284c203d297a19f5f9bbcf18b829fd957c337ec1
转办关联的接口先取消接口权限
2个文件已修改
6 ■■■■ 已修改文件
start/src/main/java/com/ycl/web/controller/system/SysRoleController.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
start/src/main/java/com/ycl/web/controller/system/SysUserController.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
start/src/main/java/com/ycl/web/controller/system/SysRoleController.java
@@ -53,7 +53,7 @@
    private final ISysDeptService deptService;
    @PreAuthorize("@ss.hasPermi('system:role:list')")
//    @PreAuthorize("@ss.hasPermi('system:role:list')")
    @GetMapping("/list")
    public TableDataInfo list(SysRole role) {
        startPage();
start/src/main/java/com/ycl/web/controller/system/SysUserController.java
@@ -55,7 +55,7 @@
    /**
     * 获取用户列表
     */
    @PreAuthorize("@ss.hasPermi('system:user:list')")
//    @PreAuthorize("@ss.hasPermi('system:user:list')")
    @GetMapping("/list")
    public TableDataInfo list(SysUser user) {
        startPage();
@@ -217,7 +217,7 @@
    /**
     * 获取部门树列表
     */
    @PreAuthorize("@ss.hasPermi('system:user:list')")
//    @PreAuthorize("@ss.hasPermi('system:user:list')")
    @GetMapping("/deptTree")
    public AjaxResult deptTree(SysDept dept) {
        return success(deptService.selectDeptTreeList(dept));