...
|
...
|
@@ -66,11 +66,12 @@ type Menu struct { |
|
|
Category string `json:"category,omitempty"`
|
|
|
// 路径节点路径("0,11,12,")
|
|
|
ParentPath string `json:"parentPath,omitempty"`
|
|
|
// 菜单是否公开状态,[1:显示],[2:隐藏],默认显示
|
|
|
// 菜单是否公开状态,[1:显示],[2:隐藏],默认显示 (移除不使用)
|
|
|
IsPublish int `json:"isPublish,omitempty"`
|
|
|
// 启用状态(启用:1 禁用:2),默认启用
|
|
|
EnableStatus int `json:"enableStatus,omitempty"`
|
|
|
|
|
|
// 外链接(需要菜单跳转的时候使用)
|
|
|
Link string `json:"link"`
|
|
|
// 父级菜单名称
|
|
|
ParentMenuName string `json:"parentMenuName,omitempty"`
|
|
|
}
|
...
|
...
|
|