using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Model { public class PickAndPostRequest { public string WH_NUMBER { get; set; } public string SYSNOD { get; set; } public string WERKS { get; set; } public List ITEMDATA { get; set; } ///// ///// 出库需求号 ///// //public string REQUIREMENT_NO { get; set; } ///// ///// 生产订单号 ///// //public string MO_NO { get; set; } ///// ///// 交货单号 ///// //public string SAP_OUT_NO { get; set; } ///// ///// 工厂代码 ///// //public string WERKS { get; set; } ///// ///// 仓库编号 ///// //public string WH_NUMBER { get; set; } ///// ///// 叫料系统编号 ///// //public string SYSNOD { get; set; } ///// ///// 业务类型名称 ///// //public string BUSINESS_NAME { get; set; } ///// ///// 业务类型代码 ///// //public string BUSINESS_CODE { get; set; } ///// ///// 叫料站台号 ///// //public string STATION { get; set; } ///// ///// 库存地点 ///// //public string LGORT { get; set; } ///// ///// 是否拆分 ///// //public string SPLIT { get; set; } ///// ///// 状态 ///// //public string STATUS { get; set; } ///// ///// 创建日期 ///// //public string CREATE_DATE { get; set; } //public List ITEMS { get; set; } } public class PickAndPost { public string REQUIREMENT_NO { get; set; } public string REQUIREMENT_ITEM_NO { get; set; } public string WERKS { get; set; } public string SYSNOD { get; set; } public string MATNR { get; set; } public string LIFNR { get; set; } public string QTY { get; set; } public string BATCH { get; set; } public string LGORT { get; set; } public string BUSINESS_NAME { get; set; } public string BUSINESS_CODE { get; set; } public string STATION { get; set; } public string SPLIT { get; set; } public string LABEL_NO { get; set; } public string CREATE_DATE { get; set; } public string UPDATE_DATE { get; set; } public string STATUS { get; set; } // /// // /// 需求行 // /// // public string REQUIREMENT_ITEM_NO { get; set; } ///// ///// 物料编码 ///// // public string MATNR { get; set; } // /// // /// 需求数量 // /// // public string QTY { get; set; } // public string PI_NO { get; set; } // /// // /// 批次 // /// // public string BATCH { get; set; } // /// // /// ? // /// // public string LIFNR { get; set; } // public string[] LABEL_NO { get; set; } } }