namespace ZR.Model.MES.wms.Dto { public class ResultionPackageCodeDto { /// /// 原始码 /// public string originalCode { get; set; } /// /// 批次号(工单号+箱子号+班组) /// public string PatchCode { get; set; } /// /// 班组 /// public string Team { get; set; } /// /// 零件号 /// public string PartNumner { get; set; } /// /// 工单号 /// public string WorkoderID { get; set; } /// /// 数量 /// public int? Quantity { get; set; } /// /// 生产时间 /// public string ProductionTime { get; set; } /// /// 产品描述 /// public string ProductionDescribe { get; set; } } }