初始化
This commit is contained in:
35
DAL/New_Models/TbRoomStatus.cs
Normal file
35
DAL/New_Models/TbRoomStatus.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user