33 lines
620 B
C#
33 lines
620 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|