using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common { /// /// 入库数量回传 /// public class HouseInboundPassBack { public List Parameters = new List(); public string ApiType { get; set; } public string Method { get; set; } public Dictionary Context { get; set; } public class data { //public class values //{ // public int Value { get; set; } //} public List Value = new List(); public class data1 { /// /// 单号 /// public string AsnNo { get; set; } /// /// 仓库 /// public string InWarehouse { get; set; } /// /// 单据大类 /// public string OrderType { get; set; } /// /// 单据小类 /// public string TransactionCode { get; set; } /// /// 出入库类型 /// public int InoutType { get; set; } /// /// 时间 /// //public string order_Time { get; set; } public List DetailList = new List(); public class Inbound { /// /// 明细ID /// public string LinId { get; set; } /// /// LPN号 /// public string LPN_No { get; set; } /// /// 物料编码 /// public string MaterielCode { get; set; } /// /// 订单数量 /// public decimal OrderQuantity { get; set; } /// /// 批次号 /// public string BatchNo { get; set; } /// /// 数量 /// public decimal FinishQty { get; set; } /// /// 库位 /// public string LocationName { get; set; } } } } } }