using System.Collections.Generic; namespace JinYuan.MES.Models { /// /// 多个电池出站 × /// public class ManyCellOutStation { /// /// /// public string siteCode { get; set; } /// /// /// public string lineCode { get; set; } /// /// /// public string equipNum { get; set; } /// /// /// public string materialCode { get; set; } /// /// /// public string userName { get; set; } /// /// 产品类型 /// public string productType { get; set; } /// /// 完工数 /// public string completeQty { get; set; } /// /// 托盘码 /// public string containerCode { get; set; } /// /// 1:通用出站;2:合芯出站;3:虚拟码替换出站;4:追溯标识替换出站;5:合芯有顶盖出站 /// public int type { get; set; } /// /// 条码数组 /// public List identiftyList { get; set; } } public class identiftyList { /// /// 产品条码 /// public string identification { get; set; } /// /// 原材料信息 /// public List materialLotList = new List(); /// /// 原材料条码 /// public string materialLotCode { get; set; } /// /// 原材料上料位置 /// public string materialLotCodeLocator { get; set; } /// /// 质量状态 /// public string qualityStatus { get; set; } /// /// 关联条码 /// public string qrCode { get; set; } /// /// NG编码 /// public List ngCode = new List(); /// /// NG错误信息 /// public string ngMessage = ""; } }