From 477ef94eeab6f2ce0076892f3ab834cc5a2dc586 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 27 八月 2024 22:59:09 +0800 Subject: [PATCH] 菜单增加Func_group,菜单组设置 --- Tiger.Model.Net/Entitys/SYS/MenuItem.cs | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Tiger.Model.Net/Entitys/SYS/MenuItem.cs b/Tiger.Model.Net/Entitys/SYS/MenuItem.cs index 0bce9b8..876b4a0 100644 --- a/Tiger.Model.Net/Entitys/SYS/MenuItem.cs +++ b/Tiger.Model.Net/Entitys/SYS/MenuItem.cs @@ -14,17 +14,20 @@ public string menuName { get; set; } public string icon { get; set; } public string func_type { get; set; } + public string func_group { get; set; } public int? orderNo { get; set; } public string func_code { get; set; } public string keepalive { get; set; } public string show { get; set; } + public string url { get; set; } + public string pages { get; set; } } public class MenuNoChildren { public string id { get; set; } public string path { get; set; } - public object component { get; set; } + public string component { get; set; } public RouteMeta meta { get; set; } public string name { get; set; } public string alias { get; set; } @@ -32,6 +35,7 @@ public bool? caseSensitive { get; set; } public DateTime? createTime { get; set; } public int btnType { get; set; } + public string doMethod { get; set; } } public class RouteMeta { @@ -78,6 +82,7 @@ public string menuId { get; set; } public string menuCode { get; set; } public int btnType { get; set; } + public string doMethod { get; set; } } public class SaveMenuParams @@ -95,7 +100,10 @@ public bool isUpdate { get; set; } public string show { get; set; } public string func_type { get; set; } + public string func_group { get; set; } + public string func_class { get; set; } public string keepalive { get; set; } public int btnType { get; set; } + public string doMethod { get; set; } } } -- Gitblit v1.9.3