chenrui
2025-05-08 e068f7ec339ea610c28bcf17d34739f391e72498
src/main/java/com/ruoyi/project/system/controller/SysUserController.java
@@ -253,4 +253,15 @@
    {
        return success(deptService.selectDeptTreeList(dept));
    }
    /**
     * 不分页用户查询
     * @param user
     * @return
     */
    @GetMapping("/userListNoPage")
    public AjaxResult userListNoPage(SysUser user){
        List<SysUser> sysUserList = userService.userListNoPage(user);
        return AjaxResult.success(sysUserList);
    }
}