using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.YNJT_PT.models { [SugarTable("TN_green_tire_information")] public class GreenTireInformation : BaseModel { public string ITEMCODE { get; set; } // 物料编码 public string BARCODE { get; set; } // 条形码 public string TIRECODE { get; set; } // 商品代码 public string MCN { get; set; } // 机器代码 public string OPR { get; set; } // 操作员id1 public string OPR02 { get; set; } // 操作员id2 public string OPR03 { get; set; } // 操作员id3 public string OPR04 { get; set; } // 操作员id4 public string WINDUP { get; set; } // windup public int QTY { get; set; } // 数量 public string TXNDATE { get; set; } // 生产时间 public string DATE_SHIFT { get; set; } // 转班日期 [SugarColumn(IsIgnore = true)] public string S_EFFECTIVE_TIME { get; set; } // 生效时间 [SugarColumn(IsIgnore = true)] public string S_EXPIRATION_TIME { get; set; } // 失效时间 [SugarColumn(IsIgnore = true)] public int N_URGENT_FLAG { get; set; } = 0; // 加急标识 } }