using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class LOTCreateIModel { /// <summary> /// 条码 /// </summary> public string LotNo { get; set; } /// <summary> /// 操作人 /// </summary> public string User { get; set; } /// <summary> /// 操作时间 /// </summary> public DateTime MTime { get; set; } /// <summary> /// 站点 /// </summary> public string WorkPoint { get; set; } public List<LOTCreateIModelInfo> detail { get; set; } } public class LOTCreateIModelInfo { /// 合并条码 /// </summary> public string CurrentLotNo { get; set; } /// <summary> /// 合并数量 /// </summary> public string CurrentQuantity { get; set; } /// <summary> /// 站点 /// </summary> public string WorkPoint { get; set; } } }