服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-08-26 ce47e1a46da2b1191faace70d8d8a64d6f400bf9
Tiger.Model.Net/Entitys/SYS/MenuItem.cs
@@ -14,23 +14,28 @@
        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; }
        public string redirect { get; set; }
        public bool? caseSensitive { get; set; }
        public DateTime? createTime { get; set; }
        public int btnType { get; set; }
        public string doMethod { get; set; }
    }
    public class RouteMeta {
@@ -74,6 +79,10 @@
        public bool? ignoreRoute { get; set; }
        // Hide path for children
        public bool? hidePathForChildren { get; set; }
        public string menuId { get; set; }
        public string menuCode { get; set; }
        public int btnType { get; set; }
        public string doMethod { get; set; }
    }
    public class SaveMenuParams
@@ -91,6 +100,9 @@
        public bool isUpdate { get; set; }
        public string show { get; set; }
        public string func_type { get; set; }
        public string func_class { get; set; }
        public string keepalive { get; set; }
        public int btnType { get; set; }
        public string doMethod { get; set; }
    }
}