using System;
|
|
namespace Model
|
{
|
public class ResMenu
|
{
|
public string Sel { get; set; }
|
public string ResNum { get; set; }
|
public string ResName { get; set; }
|
public string ParentName { get; set; }
|
public string ResType { get; set; }
|
public string CssName { get; set; }
|
public string Url { get; set; }
|
public DateTime CreatTime { get; set; }
|
public string CreatUser { get; set; }
|
public string UpdateUser { get; set; }
|
public DateTime UpdateTime { get; set; }
|
public string Demo { get; set; }
|
public int Ord { get; set; }
|
public int IsDel { get; set; }
|
}
|
public class AjaxResMenuList
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
public string ResNum { get; set; }
|
public string ResName { get; set; }
|
public string ParentNum { get; set; }
|
}
|
|
public class AjaxResMenuInfo : ResMenu
|
{
|
public string ParentNum { get; set; }
|
public string Operation { get; set; }
|
}
|
|
|
public class TreeViewModel
|
{
|
public string parentId { get; set; }
|
public string id { get; set; }
|
public string text { get; set; }
|
public string value { get; set; }
|
public int? checkstate { get; set; }
|
public bool showcheck { get; set; }
|
public bool complete { get; set; }
|
public bool isexpand { get; set; }
|
public bool hasChildren { get; set; }
|
public string img { get; set; }
|
public string title { get; set; }
|
}
|
}
|