using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace djy.Paas.Model { /// /// 模块目录链接 /// public class tb_sys_MenuList:DataBase { /// /// /// public string Key { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// URl /// public string Url { get; set; } /// /// 父级别 Key /// public string FatherKey { get; set; } /// /// 排序索引 /// public int Index { get; set; } } }