You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
880 B
C#

using SqlSugar;
namespace ProductionSystem_Model.DbModel.System
{
/// <summary>
/// 用户
/// </summary>
[SugarTable("sys_user")]
public class Sys_User : BaseModel
{
/// <summary>
/// 用户名
/// </summary>
[SugarColumn(ColumnName = "user_name")]
public string UserName { get; set; }
/// <summary>
/// 密码
/// </summary>
[SugarColumn(ColumnName = "user_pwd")]
public string UserPwd { get; set; }
/// <summary>
/// 姓名
/// </summary>
[SugarColumn(ColumnName = "real_name")]
public string RealName { get; set; }
/// <summary>
/// 角色编码
/// 关联数据字典的编码
/// </summary>
[SugarColumn(ColumnName = "rolecode")]
public string RoleCode { get; set; }
}
}