liaoxujun@qq.com
2023-07-26 4f0567c2e02d1bbdfe497dad9b948d3ecf4d3c3a
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
using SqlSugar;
 
namespace Document.Model
{
    [SugarTable("Document_UserInfo")]
    public class Document_UserInfo
    {
        /// <summary>
        /// 账号
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "账号")]
        public int UserId { get; set; }
 
        /// <summary>
        /// 用户名称
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "用户名称")]
        public string UserName { get; set; }
 
        /// <summary>
        /// 是否管理员
        /// </summary>
        [SugarColumn(ColumnDescription = "是否管理员")]
        public int IsManager { get; set; }
 
        /// <summary>
        /// 是否启用
        /// </summary>
        [SugarColumn(ColumnDescription = "是否启用")]
        public int IsUsed { get; set; }
    }
}