using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbRoomStatusAid { /// /// 类型 /// public int Id { get; set; } /// /// 辅助房态名称 /// public string Name { get; set; } = null!; public string? Ename { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 启用 /// public bool ActiveIndicator { get; set; } public int? HotelId { get; set; } }