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 pmsInterface { /// /// pmsid /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int pmsId { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)")] public System.DateTime DateTime { get; set; } /// /// pms 传输内容 /// [SugarColumn(ColumnDataType = "varchar(300)")] public string pmsContent { get; set; } /// /// 酒店id /// [SugarColumn(ColumnDataType = "int",IsNullable =true)] public Nullable hotelid { get; set; } /// /// 房间id /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable room { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string faceSN { get; set; } /// /// 1是成功 2是失败 3是人脸机不在线 下发结果 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable issueresult { get; set; } /// /// 1是开房 0是退房 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable pmstype { get; set; } /// /// 信息id /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string messageid { get; set; } } }