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 FaceBinding { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int ID { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string SerialNo { get; set; } /// /// 操作人 /// [SugarColumn(ColumnDataType = "varchar(20)", IsNullable = true)] public string Operator { get; set; } /// /// 操作类型 /// [SugarColumn(ColumnDataType = "bit", IsNullable = true)] public Nullable OperatorType { 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; } } }