|
|
@@ -26,6 +26,21 @@ type MenuTreeDetail struct {
|
|
|
Children []MenuTreeDetail `json:"children"`
|
|
|
}
|
|
|
|
|
|
+type MenuSubmit struct {
|
|
|
+ ID int64 `json:"id"`
|
|
|
+ ParentId string `json:"parentId"` //父级菜单
|
|
|
+ Code string `json:"code"` //菜单编号
|
|
|
+ Name string ` json:"name"` //菜单名称
|
|
|
+ Alias string `json:"alias"` //菜单别名
|
|
|
+ Path string `json:"path"` //请求地址
|
|
|
+ Source string `json:"source"` //菜单资源
|
|
|
+ Sort int `json:"sort"` //排序
|
|
|
+ Category int `json:"category"` //菜单类型
|
|
|
+ Action int `json:"action"` //操作按钮类型
|
|
|
+ IsOpen int `json:"isOpen"` //是否打开新页面
|
|
|
+ Remark string `json:"remark"` //备注
|
|
|
+}
|
|
|
+
|
|
|
type RsqMenuLazyList struct {
|
|
|
List []MenuLazyListDetail `json:"data"`
|
|
|
}
|