using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbRoomStatus { /// /// 类型 /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } = null!; /// /// 名称 /// public string? Ename { get; set; } public string? Twname { get; set; } public string? Color { get; set; } /// /// 排序 /// public int Sort { get; set; } public int? HotelId { get; set; } public virtual ICollection TbHosts { get; set; } = new List(); }