using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_External.Model { /// /// MES配送出发通知 /// public class MESDispatchModel { public List PRO_DispachPlanDistributionInfos { get; set; } } public class PlanDistributionInfo { /// /// 计划明细ID /// public int DispatchPlanMaterialId { get; set; } /// /// 物料编码 /// public string InvItemCode { get; set; } /// /// 物料数量 /// public decimal Quantity { get; set; } /// /// 发出时间 /// public string SendOutTime { get; set; } /// /// 预计到达时间 /// public string ArrivalTime { get; set;} } }