mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
40 lines
927 B
Go
40 lines
927 B
Go
// Package menu
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
// @Author Ms <133814250@qq.com>
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
package menu
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"hotgo/internal/model/input/adminin"
|
|
"hotgo/internal/model/input/form"
|
|
)
|
|
|
|
// EditReq 修改/新增菜单
|
|
type EditReq struct {
|
|
g.Meta `path:"/menu/edit" method:"post" tags:"菜单" summary:"修改/新增菜单"`
|
|
adminin.MenuEditInp
|
|
}
|
|
|
|
type EditRes struct{}
|
|
|
|
// DeleteReq 删除菜单
|
|
type DeleteReq struct {
|
|
g.Meta `path:"/menu/delete" method:"post" tags:"菜单" summary:"删除菜单"`
|
|
adminin.MenuDeleteInp
|
|
}
|
|
|
|
type DeleteRes struct{}
|
|
|
|
// ListReq 获取菜单列表
|
|
type ListReq struct {
|
|
g.Meta `path:"/menu/list" method:"get" tags:"菜单" summary:"获取菜单列表"`
|
|
adminin.MenuListInp
|
|
}
|
|
|
|
type ListRes struct {
|
|
*adminin.MenuListModel
|
|
form.PageRes
|
|
}
|