Remove redundant field power_id

This commit is contained in:
2023-11-15 14:03:01 +08:00
parent c0c033ad77
commit d334a231df
23 changed files with 52 additions and 117 deletions

View File

@@ -9,9 +9,6 @@ data class ElementVo(
@Schema(description = "元素名", example = "AddButton")
val name: String?,
@Schema(description = "权限 ID")
val powerId: Long?,
@Schema(description = "父 ID")
val parentId: Long?,

View File

@@ -12,9 +12,6 @@ data class MenuVo(
@Schema(description = "URL", example = "/system")
val url: String?,
@Schema(description = "权限 ID")
val powerId: Long?,
@Schema(description = "父 ID")
val parentId: Long?,

View File

@@ -7,8 +7,5 @@ data class ModuleVo(
val id: Long?,
@Schema(description = "模块名", example = "系统")
val name: String?,
@Schema(description = "权限 ID")
val powerId: Long?
val name: String?
)

View File

@@ -12,9 +12,6 @@ data class OperationVo(
@Schema(description = "功能编码", example = "system:user:add")
val code: String?,
@Schema(description = "权限 ID")
val powerId: Long?,
@Schema(description = "页面元素 ID")
val elementId: Long?
)