2020-04-04 21:39:07 +08:00
|
|
|
package model
|
2019-09-19 23:48:45 +08:00
|
|
|
|
2019-12-12 13:21:16 +08:00
|
|
|
type SysMenu struct {
|
|
|
|
SysBaseMenu
|
2020-06-07 14:56:37 +08:00
|
|
|
MenuId string `json:"menuId" gorm:"comment:'菜单ID'"`
|
|
|
|
AuthorityId string `json:"-" gorm:"comment:'角色ID'"`
|
2019-12-12 13:21:16 +08:00
|
|
|
Children []SysMenu `json:"children"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|