using SqlSugar;
namespace Entity.DbModel;
///
///
public class sysUser
{
///
/// Desc:唯一标识用户的主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// Desc:用户登录名
/// Default:
/// Nullable:True
///
public string Username { get; set; }
///
/// Desc:用户登录密码
/// Default:
/// Nullable:True
///
public string Password { get; set; }
///
/// Desc:用户姓名
/// Default:
/// Nullable:True
///
public string Fullname { get; set; }
///
/// Desc:性别
/// Default:
/// Nullable:True
///
public string Sex { get; set; }
///
/// Desc:用户电子邮件
/// Default:
/// Nullable:True
///
public string Email { get; set; }
///
/// Desc:用户手机号码
/// Default:
/// Nullable:True
///
public string PhoneNumber { get; set; }
///
/// Desc:账号创建时间
/// Default:
/// Nullable:True
///
public DateTime? CreateTime { get; set; }
///
/// Desc:最后登陆时间
/// Default:
/// Nullable:True
///
public DateTime? LastLoginTime { get; set; }
///
/// Desc:用户状态 启用 禁用
/// Default:
/// Nullable:True
///
public bool? Status { get; set; }
}