bklLiudl
2024-07-23 7850733bb718cb91be15449261d0134f59903c4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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; }
    }
}