update springdoc 2.8.9 => 2.8.10

This commit is contained in:
疯狂的狮子Li 2025-08-21 10:07:15 +08:00
parent a39a69cac5
commit 70d3505b94
5 changed files with 32 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version> <java.version>17</java.version>
<mybatis.version>3.5.16</mybatis.version> <mybatis.version>3.5.16</mybatis.version>
<springdoc.version>2.8.9</springdoc.version> <springdoc.version>2.8.10</springdoc.version>
<therapi-javadoc.version>0.15.0</therapi-javadoc.version> <therapi-javadoc.version>0.15.0</therapi-javadoc.version>
<fastexcel.version>1.2.0</fastexcel.version> <fastexcel.version>1.2.0</fastexcel.version>
<velocity.version>2.3</velocity.version> <velocity.version>2.3</velocity.version>

View File

@ -53,6 +53,13 @@ public class CacheController {
} }
} }
/**
* 缓存监控列表信息
*
* @param info 信息
* @param dbSize 数据库
* @param commandStats 命令统计
*/
public record CacheListInfoVo(Properties info, Long dbSize, List<Map<String, String>> commandStats) {} public record CacheListInfoVo(Properties info, Long dbSize, List<Map<String, String>> commandStats) {}
} }

View File

@ -179,6 +179,12 @@ public class SysMenuController extends BaseController {
return toAjax(menuService.deleteMenuById(menuId)); return toAjax(menuService.deleteMenuById(menuId));
} }
/**
* 角色菜单列表树信息
*
* @param checkedKeys 选中菜单列表
* @param menus 菜单下拉树结构列表
*/
public record MenuTreeSelectVo(List<Long> checkedKeys, List<Tree<Long>> menus) { public record MenuTreeSelectVo(List<Long> checkedKeys, List<Tree<Long>> menus) {
} }

View File

@ -129,8 +129,20 @@ public class SysProfileController extends BaseController {
return R.fail("上传图片异常,请联系管理员"); return R.fail("上传图片异常,请联系管理员");
} }
/**
* 用户头像信息
*
* @param imgUrl 头像地址
*/
public record AvatarVo(String imgUrl) {} public record AvatarVo(String imgUrl) {}
/**
* 用户个人信息
*
* @param user 用户信息
* @param roleGroup 用户所属角色组
* @param postGroup 用户所属岗位组
*/
public record ProfileVo(ProfileUserVo user, String roleGroup, String postGroup) {} public record ProfileVo(ProfileUserVo user, String roleGroup, String postGroup) {}
} }

View File

@ -235,6 +235,12 @@ public class SysRoleController extends BaseController {
return R.ok(selectVo); return R.ok(selectVo);
} }
/**
* 角色部门列表树信息
*
* @param checkedKeys 选中部门列表
* @param depts 下拉树结构列表
*/
public record DeptTreeSelectVo(List<Long> checkedKeys, List<Tree<Long>> depts) {} public record DeptTreeSelectVo(List<Long> checkedKeys, List<Tree<Long>> depts) {}
} }