old_flsystem/FLSystem/TempEntity.cs

33 lines
620 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FLSystem
{
public class TempEntity
{
}
/// <summary>
/// 界面菜单导航栏
/// </summary>
public class NavTree
{
public bool check { get; set; }
public string name { get; set; }
/// <summary>
/// 下标,用于标识第几个菜单
/// </summary>
public int index { get; set; }
/// <summary>
/// 用户标识第几层
/// </summary>
public int ceng { get; set; }
}
}