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_RFIDInfo")] public class Base_RFIDInfo { public Base_RFIDInfo() { } public Base_RFIDInfo(string rfidCode, string lotNum, int orderFlag, int updateFlag, string firstTime, string uuid, int preDistance) { this.rfidCode = rfidCode; this.lotNum = lotNum; this.orderFlag = orderFlag; this.updateFlag = updateFlag; this.firstTime = firstTime; this.uuid = uuid; this.preDistance = preDistance; } /// /// 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 lotNum { get; set; } /// /// Desc:正反转标识 0-正转、1-反转 /// Default: /// Nullable:True /// public int orderFlag { get; set; } /// /// /// Desc:更换标识 0-否、1-是 /// Default: /// Nullable:True /// public int updateFlag { get; set; } /// /// Desc:首次读取时间 /// Default: /// Nullable:True /// public string firstTime { get; set; } /// /// UUID /// public string uuid { get; set; } /// /// 前距 /// public int preDistance { get; set; } } }