using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.Mobox3.AnGang.Dtos.Request { public class ErpRequest { /// /// 入库数据同步信息 /// public class InboundDataSyncInfo { /// /// 库存明细(列表) /// public List stockTransactions { get; set; } /// /// 总记录数 /// public string totalRecords { get; set; } /// /// 数据生成时间戳 /// public string timestamp { get; set; } } /// /// 库存明细信息 /// public class StockTransaction { /// /// 储位码 /// public string locationCode { get; set; } /// /// 库存明细交易号 /// public string stockTransactionId { get; set; } /// /// 物料编码 /// public string itemCode { get; set; } /// /// 物料名称 /// public string itemName { get; set; } /// /// 物料短描述 /// public string itemShortDesc { get; set; } /// /// 库存数量 /// public string stockQuantity { get; set; } /// /// 入库数量 /// public string inQuantity { get; set; } /// /// 库存总价 /// public string totalPrice { get; set; } /// /// 入库时间 /// public string stockInTime { get; set; } /// /// 保管员 /// public string storeKeeper { get; set; } /// /// 产线部门代码 /// public string lineCode { get; set; } /// /// 送货单行号 /// public string deliveryItemNo { get; set; } /// /// 供应商名称 /// public string supplierName { get; set; } /// /// 库存责任人姓名 /// public string inventoryManager { get; set; } /// /// 备用字段1 /// public string ext1 { get; set; } /// /// 备用字段2 /// public string ext2 { get; set; } /// /// 备用字段3 /// public string ext3 { get; set; } /// /// 备用字段4 /// public string ext4 { get; set; } /// /// 备用字段5 /// public string ext5 { get; set; } } /// /// 出库发料同步信息 /// public class OutboundDataSyncInfo { /// /// 发料记录明细列表 /// public List materialIssues { get; set; } /// /// 总记录数 /// public string totalRecords { get; set; } /// /// 数据生成时间戳 /// public string timestamp { get; set; } } /// /// 发料记录明细信息 /// public class MaterialIssue { /// /// 储位码 /// public string locationCode { get; set; } /// /// 领用单号 /// public string withdrawalOrderNo { get; set; } /// /// 物料编码 /// public string itemCode { get; set; } /// /// 物料名称 /// public string itemName { get; set; } /// /// 物料短描述 /// public string itemShortDesc { get; set; } /// /// 实发数量 /// public string actualIssuedQty { get; set; } /// /// 实发金额 /// public string issuedAmount { get; set; } /// /// 供应商名称 /// public string supplierName { get; set; } /// /// 实发人 /// public string issuer { get; set; } /// /// 发料日期 /// public string issueDate { get; set; } /// /// 保管员 /// public string storeKeeper { get; set; } /// /// 产线部门代码 /// public string lineCode { get; set; } /// /// 批次 /// public string batchNo { get; set; } /// /// 备用字段1 /// public string ext1 { get; set; } /// /// 备用字段2 /// public string ext2 { get; set; } /// /// 备用字段3 /// public string ext3 { get; set; } /// /// 备用字段4 /// public string ext4 { get; set; } /// /// 备用字段5 /// public string ext5 { get; set; } } } }