using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbSysUser { /// /// ID /// public int Id { get; set; } public int? HotelId { get; set; } /// /// 登录账号 /// public string Account { get; set; } = null!; /// /// 登录密码 /// public string Password { get; set; } = null!; /// /// 姓名 /// public string? Name { get; set; } public int? DistrictId { get; set; } /// /// 所属部门 /// public int? DepartmentId { get; set; } public int? PositionId { get; set; } public int? RoleId { get; set; } public string? Sex { get; set; } public string? Phone { get; set; } /// /// 邮件 /// public string? Email { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// 启用 /// public bool ActiveIndicator { get; set; } /// /// 创建人 /// public string CreatedBy { get; set; } = null!; /// /// 创建时间 /// public DateTime CreatedDate { get; set; } /// /// 修改人 /// public string ModifiedBy { get; set; } = null!; /// /// 修改时间 /// public DateTime ModifiedDate { get; set; } /// /// 所属分组ID /// public int? GroupId { get; set; } public string? LoginIp { get; set; } public int? SysHotelGroupId { get; set; } public string? Password2 { get; set; } public DateTime? LastModifiedTime { get; set; } public bool? IsDeleted { get; set; } public virtual TbSysHotel? Department { get; set; } public virtual TbSysDistrict? District { get; set; } public virtual TbSysRole? Role { get; set; } public virtual ICollection Hotels { get; set; } = new List(); }