refactor: 发布撤销支持put请求

发布撤销支持put请求
This commit is contained in:
胡少翔
2024-11-14 09:31:41 +08:00
parent c7621f90cb
commit 16bd1399db
2 changed files with 3 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements Ro
.like(StrUtil.isNotBlank(keywords), Role::getCode, keywords)
)
.ne(!SecurityUtils.isRoot(), Role::getCode, SystemConstants.ROOT_ROLE_CODE) // 非超级管理员不显示超级管理员角色
.orderByDesc(Role::getId)
);
// 实体转换