38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Air.Model.AirAdminViewModel
|
|
{
|
|
public class Bas_LeftMemuModel
|
|
{
|
|
public int MenuId { get; set; }
|
|
public int ModuleMenuId { get; set; }
|
|
public string MName { get; set; }
|
|
public string Url { get; set; }
|
|
public int IsGroup { get; set; }
|
|
public int IsShow { get; set; }
|
|
public string RightId { get; set; }
|
|
public int? ParentId { get; set; }
|
|
public int SortId { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int CreateUser { get; set; }
|
|
}
|
|
|
|
public class Bas_LeftMenuTreeViewModel
|
|
{
|
|
public int id { get; set; }
|
|
public string text { get; set; }
|
|
public string value { get; set; }
|
|
public bool showcheck { get; set; }
|
|
public bool complete { get; set; }
|
|
public bool isexpand { get; set; }
|
|
public int checkstate { get; set; }
|
|
public int? parentid { get; set; }
|
|
public bool hasChildren { get; set; }
|
|
public IList<Bas_LeftMenuTreeViewModel> ChildNodes { get; set; }
|
|
}
|
|
}
|