using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
///
/// pms信息
///
public class pmsInfo
{
///
/// id
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int pmsid { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable =true)]
public Nullable Creationtime { get; set; }
///
/// 数据
///
[SugarColumn(ColumnDataType = "varchar(300)")]
public string data { get; set; }
///
/// 信息类型 0是退房 1是开房
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable infotype { get; set; }
///
/// 酒店id
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable hotelid { get; set; }
///
/// 房间id
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable room { get; set; }
}
}