using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLH.SSDMS.Model.DO { /// /// /// [SugarTable("base_ReadRecord")] public partial class Base_ReadRecord { public Base_ReadRecord() { } /// /// Desc:标识 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int objId { get; set; } /// /// Desc:rfid标签号 /// Default: /// Nullable:True /// public string rfidCode { get; set; } /// /// Desc:生产年 /// Default: /// Nullable:True /// public string proYear { get; set; } /// /// Desc:生产月 /// Default: /// Nullable:True /// public string proMonth { get; set; } /// /// Desc:生产机台 /// Default: /// Nullable:True /// public string proMachine { get; set; } /// /// Desc:带强 /// Default: /// Nullable:True /// public string beltStrength { get; set; } /// /// Desc:带宽 /// Default: /// Nullable:True /// public string beltWidth { get; set; } /// /// Desc:上胶厚度 /// Default: /// Nullable:True /// public string upGlueThick { get; set; } /// /// Desc:连接符 /// Default: /// Nullable:True /// public string unionSymbol { get; set; } /// /// Desc:下胶厚度 /// Default: /// Nullable:True /// public string downGlueThick { get; set; } /// /// Desc:盖胶级别 /// Default: /// Nullable:True /// public string coverGlueLevel { get; set; } /// /// Desc:卷号 /// Default: /// Nullable:True /// public string lotNum { get; set; } /// /// Desc:RFID序号 /// Default: /// Nullable:True /// public string rfidOrder { get; set; } /// /// Desc:RFID前间隔 /// Default: /// Nullable:True /// public int preDistance { get; set; } /// /// Desc:RFID后间隔 /// Default: /// Nullable:True /// public int aftDistance { get; set; } /// /// Desc:记录时间 /// Default: /// Nullable:True /// public DateTime readTime { get; set; } /// /// /// public decimal timeNumber { get; set; } /// /// 终端地址 /// public string terminal { get; set; } /// /// UUID /// public string uuid { get; set; } /// /// 正反转标识:0-正转、1-反转 /// public int orderFlag { get; set; } } }