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_ProductionShedule")] public class ProductionShedule : BaseModel { public string DATESHIFT { get; set; } // 日期班次 格式:"dd/MM/yy" public string ITEMCODE { get; set; } // 物料编码 public string MCN { get; set; } // 硫化机工位号 public int QTY { get; set; } // 数量 public string SHIFT { get; set; } // 班次 public int RECID { get; set; } // 唯一ID } }