Optimize code
This commit is contained in:
20
src/main/kotlin/top/fatweb/api/vo/permission/OperationVo.kt
Normal file
20
src/main/kotlin/top/fatweb/api/vo/permission/OperationVo.kt
Normal file
@@ -0,0 +1,20 @@
|
||||
package top.fatweb.api.vo.permission
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema
|
||||
|
||||
@Schema(description = "功能返回参数")
|
||||
data class OperationVo(
|
||||
val id: Long?,
|
||||
|
||||
@Schema(description = "功能名", example = "Add User")
|
||||
val name: String?,
|
||||
|
||||
@Schema(description = "功能编码", example = "system:user:add")
|
||||
val code: String?,
|
||||
|
||||
@Schema(description = "权限 ID")
|
||||
val powerId: Long?,
|
||||
|
||||
@Schema(description = "页面元素 ID")
|
||||
val elementId: Long?
|
||||
)
|
||||
Reference in New Issue
Block a user