using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FLSystem { public class TempEntity { } /// /// 界面菜单导航栏 /// public class NavTree { public bool check { get; set; } public string name { get; set; } /// /// 下标,用于标识第几个菜单 /// public int index { get; set; } /// /// 用户标识第几层 /// public int ceng { get; set; } } }