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 transferFace { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string faceSN { get; set; } /// /// 信息id /// [SugarColumn(ColumnDataType = "varchar(150)", IsNullable = true)] public string infoid { get; set; } /// /// 故障状态 0是收到 1是正处理 2是失败 3是已成功 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable faultState { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)] public Nullable creationTime { get; set; } } }