zhaojs
2023-09-27 74098f1401afe40f961d1d167bb18dd0a71c4d59
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("user_info")]
    public class UserInfo
    {
        /// <summary>
        /// 
        /// </summary>
        public UserInfo()
        {
        }
 
        /// <summary>
        /// 
        /// </summary>
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
        public System.String Id { get; set; }
 
        /// <summary>
        /// 账号名
        /// </summary>
        [SugarColumn(ColumnName = "user_name")]
        public System.String UserName { get; set; }
 
        /// <summary>
        /// 密码
        /// </summary>
        [SugarColumn(ColumnName = "pwd")]
        public System.String Pwd { get; set; }
 
        /// <summary>
        /// 手机号
        /// </summary>
        [SugarColumn(ColumnName = "mobile")]
        public System.String Mobile { get; set; }
 
        /// <summary>
        /// 主账号id
        /// </summary>
        [SugarColumn(ColumnName = "parent_id")]
        public System.String ParentId { get; set; }
 
        /// <summary>
        ///  昵称
        /// </summary>
        [SugarColumn(ColumnName = "nick_name")]
        public System.String NickName { get; set; }
 
        /// <summary>
        ///  0 主账号 1子账号
        /// </summary>
        [SugarColumn(ColumnName = "user_type")]
        public System.Int32 UserType { get; set; }
 
        /// <summary>
        ///  角色id
        /// </summary>
        [SugarColumn(ColumnName = "role_id")]
        public System.String RoleId { get; set; }
 
        /// <summary>
        /// 修改时间
        /// </summary>
        [SugarColumn(ColumnName = "modify_time")]
        public System.DateTime ModifyTime { get; set; }
    }
}