初始化
This commit is contained in:
31
DAL/New_Models/TbRoomStatusAid.cs
Normal file
31
DAL/New_Models/TbRoomStatusAid.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.New_Models;
|
||||
|
||||
public partial class TbRoomStatusAid
|
||||
{
|
||||
/// <summary>
|
||||
/// 类型
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 辅助房态名称
|
||||
/// </summary>
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public string? Ename { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
public int Sort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 启用
|
||||
/// </summary>
|
||||
public bool ActiveIndicator { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user