Add GetUserInfo

This commit is contained in:
2023-10-27 18:20:15 +08:00
parent 7aa2212976
commit 11ceb410c8
13 changed files with 181 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
package top.fatweb.api.vo.authentication
import io.swagger.v3.oas.annotations.media.Schema
@Schema(description = "菜单返回参数")
data class MenuVo(
val id: Long?,
@Schema(description = "菜单名", example = "System")
val name: String?,
@Schema(description = "URL", example = "/system")
val url: String?,
@Schema(description = "权限 ID")
val powerId: Long?,
@Schema(description = "父 ID")
val parentId: Long?
)