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 FaceIssue { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(100)")] public string faceSn { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)")] public System.DateTime creationtime { get; set; } /// /// pmsid /// [SugarColumn(ColumnDataType = "varchar(200)",IsNullable =true)] public string pmsid { get; set; } /// /// 图片 /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string picture { get; set; } /// /// 下发状态 0是成功 1是失败 /// [SugarColumn(ColumnDataType = "int")] public int issuestate { get; set; } /// /// 信息id /// [SugarColumn(ColumnDataType = "varchar(100)")] public string messageid { get; set; } } }