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