This commit is contained in:
laodaming
2023-11-15 16:32:07 +08:00
parent 6d7a88ef29
commit 1a2c9a8f49
7 changed files with 163 additions and 17 deletions

View File

@@ -103,11 +103,11 @@ type GetMenuDetailRsp {
}
//获取菜单列表
type GetMenusReq {
CurrentPage int64 `form:"current_page"`
CurrentPage int `form:"current_page"`
Name string `form:"name"`
Title string `form:"title"`
Path string `form:"path"`
ParentId int64 `form:"parent_id"`
ParentId *int64 `form:"parent_id"`
}
type GetMenusRsp {
List []MenuItem `json:"list"`