using System; using System.Linq; using System.Text; using SqlSugar; namespace SlnMesnac.Repository { /// /// /// [SugarTable("real_readdata")] public partial class real_readdata { public real_readdata(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="objid")] public int objid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="orderno")] public string orderno {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="lineno")] public string lineno {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="producttype")] public string producttype {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rfidepc")] public string rfidepc {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rfidascii")] public string rfidascii {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="readtime")] public DateTime? readtime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="writetime")] public DateTime? writetime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="writestatus")] public string writestatus {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "serialno")] public string serialno { get; set; } } }