forked from lxh/go-wxhelper
21 lines
657 B
Go
21 lines
657 B
Go
|
package menu
|
|||
|
|
|||
|
// Item
|
|||
|
// @description:
|
|||
|
type Item struct {
|
|||
|
Id string `json:"id"` // 菜单Id
|
|||
|
Path string `json:"path"` // 访问路径
|
|||
|
Meta ItemMeta `json:"meta"` // 元数据
|
|||
|
Children []Item `json:"children"` // 子菜单
|
|||
|
}
|
|||
|
|
|||
|
// ItemMeta
|
|||
|
// @description: 菜单元数据
|
|||
|
type ItemMeta struct {
|
|||
|
Title string `json:"title"` // 标题
|
|||
|
Icon string `json:"icon"` // 图标
|
|||
|
Rank int `json:"rank"` // 排序
|
|||
|
Roles []string `json:"roles"` // 当前菜单所属的角色代码
|
|||
|
Auths []string `json:"auths"` // 当前菜单包含的按钮,如果传入了用户Id,返回的将会是权限内所有的按钮
|
|||
|
}
|