using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.Entity.WMS { public class SAPDeliverMaterial { /// /// ? /// public string OrderNo { get; set; } /// /// /// public DateTimeOffset? CreatedTime { get; set; } /// /// 3存放位置 /// public string StorageLocation { get; set; } /// /// SAP收货确认成功返回的文档编号 10位数字 /// public string SAPConfirmMessage { get; set; } /// /// 4工厂 默认写死 /// public string Plant { get; set; } /// /// 5数量 /// public Decimal? Quantity { get; set; } /// /// sap确认收货发送次数 /// public int? SAP_ConfirmCount { get; set; } /// /// 6物料号 /// public string MaterialCode { get; set; } /// /// 7单位 /// public string Unit { get; set; } /// /// 成本中心 /// public string Costcenter { get; set; } /// /// 8批次 /// public string BatchNo { get; set; } /// /// IsBatchMge 值=true 按批次确认收货,BarNo批次号要传值 /// public bool? IsBatchMge { get; set; } /// /// ID /// public long Id { get;set; } } public class SAPDeliverSuccessItem { /// /// 1 id /// public long Id { get; set; } /// /// 2 sap确认返回信息 /// public string SAPConfirmMessage { get; set; }=string.Empty; /// /// 是否成功 /// public bool IsSuccess { get; set; } } }