Files
Web_BLSKafka_Server_Prod/DAL/New_Models/TbRoomStatus.cs

36 lines
683 B
C#
Raw Normal View History

2025-11-21 08:48:01 +08:00
using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbRoomStatus
{
/// <summary>
/// 类型
/// </summary>
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// 名称
/// </summary>
public string? Ename { get; set; }
public string? Twname { get; set; }
public string? Color { get; set; }
/// <summary>
/// 排序
/// </summary>
public int Sort { get; set; }
public int? HotelId { get; set; }
public virtual ICollection<TbHost> TbHosts { get; set; } = new List<TbHost>();
}