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 CheckInInfo
{
///
/// id
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int id { get; set; }
///
/// 客户名字
///
[SugarColumn(ColumnDataType = "varchar(20)")]
public string Name { get; set; }
///
/// 身份证
///
[SugarColumn(ColumnDataType = "varchar(100)",IsNullable =true)]
public string IdNumber { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable CreationTime { get; set; }
///
/// 信息来源
///
[SugarColumn(ColumnDataType = "int")]
public int InfoSource { get; set; }
///
/// 酒店code
///
[SugarColumn(ColumnDataType = "int",IsNullable =true)]
public Nullable HotelCode { get; set; }
///
/// 房间id
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable Roomid { get; set; }
///
/// 开房时间
///
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable CheckTime { get; set; }
///
/// 退房时间
///
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable checkOutTime { get; set; }
///
/// 图片
///
[SugarColumn(ColumnDataType = "varchar(50)")]
public string picture { get; set; }
///
/// 身份
///
[SugarColumn(ColumnDataType = "varchar(20)", IsNullable = true)]
public string identitys { get; set; }
}
}