You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
3.0 KiB
54 lines
3.0 KiB
package model
|
|
|
|
import "bkb-seller/global"
|
|
|
|
type SysBaseMenu struct {
|
|
global.MG_MODEL
|
|
MenuLevel uint `json:"-"`
|
|
Owner string `json:"owner" gorm:"comment:组织所属"` // 组织所属
|
|
Type string `json:"type" gorm:"comment:类型"` // 类型 admin-运营端 seller-商家端
|
|
ParentId string `json:"parentId" gorm:"comment:父菜单ID"` // 父菜单ID
|
|
Path string `json:"path" gorm:"comment:路由path"` // 路由path
|
|
Name string `json:"name" gorm:"comment:路由name"` // 路由name
|
|
Group string `json:"group" gorm:"comment:路由组"` // 路由组
|
|
Hidden bool `json:"hidden" gorm:"comment:是否在列表隐藏"` // 是否在列表隐藏
|
|
Component string `json:"component" gorm:"comment:对应前端文件路径"` // 对应前端文件路径
|
|
Sort int `json:"sort" gorm:"comment:排序标记"` // 排序标记
|
|
Meta `json:"meta" gorm:"comment:附加属性"` // 附加属性
|
|
SysAuthoritys []SysAuthority `json:"authoritys" gorm:"many2many:sys_authority_menus;"`
|
|
Children []SysBaseMenu `json:"children" gorm:"-"`
|
|
Parameters []SysBaseMenuParameter `json:"parameters"`
|
|
}
|
|
|
|
type Meta struct {
|
|
KeepAlive bool `json:"keepAlive" gorm:"comment:是否缓存"` // 是否缓存
|
|
DefaultMenu bool `json:"defaultMenu" gorm:"comment:是否是基础路由(开发中)"` // 是否是基础路由(开发中)
|
|
Title string `json:"title" gorm:"comment:菜单名"` // 菜单名
|
|
Icon string `json:"icon" gorm:"comment:菜单图标"` // 菜单图标
|
|
CloseTab bool `json:"closeTab" gorm:"comment:自动关闭tab"` // 自动关闭tab
|
|
}
|
|
|
|
type SysBaseMenuParameter struct {
|
|
SysBaseMenuID uint
|
|
Type string `json:"type" gorm:"comment:地址栏携带参数为params还是query"` // 地址栏携带参数为params还是query
|
|
Key string `json:"key" gorm:"comment:地址栏携带参数的key"` // 地址栏携带参数的key
|
|
Value string `json:"value" gorm:"comment:地址栏携带参数的值"` // 地址栏携带参数的值
|
|
global.MG_MODEL
|
|
}
|
|
|
|
type SysMenu struct {
|
|
SysBaseMenu
|
|
//MenuId string `json:"menuId" gorm:"comment:菜单ID"`
|
|
//AuthorityId string `json:"-" gorm:"comment:角色ID"`
|
|
Children []SysMenu `json:"children" gorm:"-"`
|
|
Parameters []SysBaseMenuParameter `json:"parameters" gorm:"foreignKey:SysBaseMenuID;references:ID"`
|
|
}
|
|
|
|
type SysMenuApi struct {
|
|
SysBaseMenu
|
|
Children []SysApi `json:"children" gorm:"-"`
|
|
}
|
|
|
|
func (s SysMenu) TableName() string {
|
|
return "sys_base_menus"
|
|
}
|
|
|