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 FaceInfo { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)")] public System.DateTime CreationDate { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(50)")] public string SerialNo { get; set; } /// /// 绑定状态 /// [SugarColumn(ColumnDataType = "bit")] public bool BindingState { get; set; } /// /// 绑定时间 /// [SugarColumn(ColumnDataType = "datetime(3)", IsNullable =true)] public Nullable BindingDate { get; set; } /// /// 酒店id /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable HotelCode { get; set; } /// /// 房间id /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable Roomid { get; set; } /// /// 人脸机状态 /// [SugarColumn(ColumnDataType = "bit")] public bool FaceState { get; set; } } }