using SqlSugar;
namespace Document.Model
{
[SugarTable("Document_UserInfo")]
public class Document_UserInfo
{
///
/// 账号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "账号")]
public int UserId { get; set; }
///
/// 用户名称
///
[SugarColumn(Length = 50, ColumnDescription = "用户名称")]
public string UserName { get; set; }
///
/// 是否管理员
///
[SugarColumn(ColumnDescription = "是否管理员")]
public int IsManager { get; set; }
///
/// 是否启用
///
[SugarColumn(ColumnDescription = "是否启用")]
public int IsUsed { get; set; }
}
}