bklLiudl
2024-07-23 800b01a48d309fa19a624e943b3a8fb2e8eef5c8
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
53
using System;
 
namespace Model
{
    public  class UserInfo
    {
        public int? ID { get; set; }
        public string UserCode { get; set; }
        public string Username { get; set; }
        public string Pwd { get; set; }
        public string RealName { get; set; }
        public string RoleName { get; set; }
        public string RoleNum { get; set; }
        public string DepartName { get; set; }
        public string DepartNum { get; set; }
        public string Mobile { get; set; }
        public string Phone { get; set; }
        public string email { get; set; }
        public string CreatUser { get; set; }
        public string UpdateUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public DateTime CreatTime { get; set; }
        public string Demo { get; set; }
        public int Sex { get; set; }
        public string IDcard { get; set; }
        public string Address { get; set; }
        public string Statu { get; set; }
        public string Guid { get; set; }
        public string AccessCode { get; set; }
    }
 
    public class AjaxUserList
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public string UserCode { get; set; }
        public string UserName { get; set; }
        public string RoleName { get; set; }
        public string RoleNum { get; set; }
        public string DepartMent { get; set; }
        public string DepartNum { get; set; }
        public string IsDel { get; set; }
    }
 
    public class AjaxUserInfo : UserInfo
    {
        
        public string NewPass { get; set; }
        public string ConfirmPass { get; set; }
        public string Operation { get;set; }
    }
 
}