using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common { public class HouseSyncretism { public List Parameters = new List(); public string ApiType { get; set; } public string Method { get; set; } public Dictionary Context { get; set; } public class Parame { public List Value = new List(); public class Syncretism { /// /// 原始LPN /// public string Lpn { get; set; } /// /// 移库单类型 /// public int MoveType { get; set; } /// /// 仓库 (发货仓库) /// public string WareHouseCode { get; set; } /// /// 物料编码 /// public string ItemCode { get; set; } /// /// 移库数量 /// public decimal MoveNumber { get; set; } /// /// 物料批次 /// public string LotNo { get; set; } /// /// 生产批次 /// public string WipBatch { get; set; } /// /// 来源库位 /// public string LocationName { get; set; } /// /// 目标库位 /// public string TargetLocName { get; set; } /// /// 目标LPN /// public string TargetLpn { get; set; } } } } }