using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbSysRole { public int Id { get; set; } public int? HotelId { get; set; } /// /// 名称 /// public string Name { get; set; } = null!; /// /// 排序 /// 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; } public int? SysHotelGroupId { get; set; } public virtual ICollection TbSysUsers { get; set; } = new List(); public virtual ICollection Authorities { get; set; } = new List(); }