using System; using System.Collections.Generic; using System.Text; namespace Model.InterFaceModel { /// /// 出库单信息 /// public class SoInfo { /// /// 单据类型 /// public string SoType { get; set; } /// /// 客户编码/货主 /// public string Customer { get; set; } /// /// 上游系统单号 /// public string OrderCode { get; set; } /// /// 承运商 /// public string LogisticsNo { get; set; } /// /// 单据来源 /// public string Origin { get; set; } /// /// 单据明细 /// public List SoDetails { get; set; } } /// /// 出库单明细信息 /// public class SoDetail { /// /// 物料编码 /// public string SkuNo { get; set; } /// /// 批次号 /// public string LotNo { get; set; } /// /// 数量 /// public int Qty { get; set; } /// /// 供货批次 /// public string SupplierLot { get; set; } } }