Finish role add and get
This commit is contained in:
@@ -16,5 +16,8 @@ data class MenuVo(
|
||||
val powerId: Long?,
|
||||
|
||||
@Schema(description = "父 ID")
|
||||
val parentId: Long?
|
||||
val parentId: Long?,
|
||||
|
||||
@Schema(description = "模块 ID")
|
||||
val moduleId: Long?
|
||||
)
|
||||
|
||||
@@ -13,5 +13,17 @@ data class RoleWithPowerVo(
|
||||
val name: String?,
|
||||
|
||||
@Schema(description = "启用", example = "true")
|
||||
val enable: Boolean?
|
||||
val enable: Boolean?,
|
||||
|
||||
@Schema(description = "模块列表")
|
||||
val modules: List<ModuleVo>?,
|
||||
|
||||
@Schema(description = "菜单列表")
|
||||
val menus: List<MenuVo>?,
|
||||
|
||||
@Schema(description = "页面元素列表")
|
||||
val elements: List<ElementVo>?,
|
||||
|
||||
@Schema(description = "功能列表")
|
||||
val operations: List<OperationVo>?
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user