namespace MES.Service.Dto.service { public class MesItemQtList { /// /// 物料编号 /// public string ItemId { get; set; } /// /// 计划数量 /// public decimal PlannedQuantity { get; set; } /// /// 申请数量 /// public decimal AppliedQuantity { get; set; } /// /// 备注说明 /// public string Remark { get; set; } /// /// 行号(物料顺序) /// public int? LineNumber { get; set; } /// /// 生产相关 /// public string ProductionRelated { get; set; } /// /// 存储类型 /// public string StorageType { get; set; } /// /// 货主组织 /// public string OwnerOrganization { get; set; } /// /// 存储地点 /// public string StorageLocation { get; set; } /// /// 供应商编码 /// public string SupplierCode { get; set; } /// /// 客户编码 /// public string CustomerCode { get; set; } /// /// 关联项目编码 /// public string ProjectCode { get; set; } /// /// 关联任务编码 /// public string TaskCode { get; set; } /// /// 生产订单号 /// public string ProductionOrder { get; set; } /// /// 生产线日计划编号 /// public string DailyPlan { get; set; } /// /// 生产活动 /// public string ProductionActivity { get; set; } /// /// 产成品编码 /// public string FinishedProduct { get; set; } /// /// 领料用途 /// public string PickingUsage { get; set; } } }