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-04-07 00:08:37 +08:00
|
|
|
MenuId string `json:"menuId"`
|
2019-12-12 13:21:16 +08:00
|
|
|
AuthorityId string `json:"-"`
|
|
|
|
Children []SysMenu `json:"children"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|