using SqlSugar; using System; using System.Collections.Generic; using System.Data.SqlTypes; using System.Linq; using System.Security.Principal; using System.Text; using System.Threading.Tasks; namespace Face.Domain.Application.FaceAll { public class facedevicerxtxinfo { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable pmsid { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)] public string sn { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)] public string msgid { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)] public string cmd { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(10)", IsNullable = true)] public string direction { get; set; } /// /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable trresult { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(700)", IsNullable = true)] public string data { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)] public Nullable datatime { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)] public string ipaddr { get; set; } /// /// 数据 /// [SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)] public string iplocation { get; set; } } }