68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.Domain.Application.FaceAll
|
|
{
|
|
/// <summary>
|
|
/// pms传输人脸机表
|
|
/// </summary>
|
|
public class pmsInterface
|
|
{
|
|
/// <summary>
|
|
/// pmsid
|
|
/// </summary>
|
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
|
public int pmsId { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "datetime(3)")]
|
|
|
|
public System.DateTime DateTime { get; set; }
|
|
/// <summary>
|
|
/// pms 传输内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(300)")]
|
|
public string pmsContent { 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> room { get; set; }
|
|
/// <summary>
|
|
/// SN号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)]
|
|
|
|
public string faceSN { get; set; }
|
|
/// <summary>
|
|
/// 1是成功 2是失败 3是人脸机不在线 下发结果
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> issueresult { get; set; }
|
|
/// <summary>
|
|
/// 1是开房 0是退房
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> pmstype { get; set; }
|
|
/// <summary>
|
|
/// 信息id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)]
|
|
public string messageid { get; set; }
|
|
}
|
|
}
|