Files
Web_Faces_Prod/Face.Domain/Application/FaceAll/CheckinTest.cs

66 lines
1.9 KiB
C#
Raw Normal View History

2025-11-25 17:41:24 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
/// <summary>
/// 开房测试表
/// </summary>
public class CheckinTest
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int id { get; set; }
/// <summary>
/// 测试状态 0是预开 1是已开 2.已退 3.退房失败 4.开房失败
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> testState { get; set; }
/// <summary>
/// 预计开房时间
/// </summary>
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable<System.DateTime> predictCheckIn { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable<System.DateTime> creationTime { get; set; }
/// <summary>
/// 开房时长
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> checkInduration { get; set; }
/// <summary>
/// 酒店id
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> hotelid { get; set; }
/// <summary>
/// 房间id
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> Roomid { get; set; }
/// <summary>
/// 退房时间
/// </summary>
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable<System.DateTime> CheckoutTime { get; set; }
}
}