using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static WIDESEA_Common.HouseInboundPassBack; using static WIDESEA_Common.HouseInboundPassBack.data.data1; namespace WIDESEA_Common { /// /// 盘点数量回传 /// public class HouseInventoryIn { public string ApiType { get; set; } = "StockCountController"; public string Method { get; set; } = "AsrsFinishedStockCount"; public Dictionary Context { get; set; } public List Parameters = new List(); public class data { public List Value = new List(); public class InventoryIn { /// /// 单号 /// public string No { 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 WarehouseCode { get; set; } /// /// 库区 /// public string StorageAreaCode { get; set; } /// /// 库位 /// public string StorageLocationCode { get; set; } } } } } }