using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Xml.Serialization; namespace HUIWEI.Lexmark.sftp.SDK.Domain { // 注意: 生成的代码可能至少需要 .NET Framework 4.5 或 .NET Core/Standard 2.0。 /// [Serializable()] [DesignerCategory("code")] [XmlType(AnonymousType = true)] [XmlRoot(Namespace = "", IsNullable = false)] public partial class AdvanceShipmentNotification { /// public AdvanceShipmentNotificationHeader Header { get; set; } /// [XmlElement("LineItem")] public AdvanceShipmentNotificationLineItem[] LineItem { get; set; } } /// [Serializable()] [DesignerCategory("code")] [XmlType(AnonymousType = true)] public partial class AdvanceShipmentNotificationHeader { /// public string Supplier { get; set; } /// public string Buyer { get; set; } public string PO_Date { get; set; } /// public string LEX_PO { get; set; } /// public object Internal_PO { get; set; } public string Delivery_Date { get; set; } /// public string Ship_Address { get; set; } /// public string Lot_Number { get; set; } [XmlElement("Actual_Ex-factory_Date")] public string Actual_Exfactory_Date { get; set; } public string ETD_HK { get; set; } /// public string Container_Number { get; set; } /// public string Container_Type { get; set; } /// public string Carrier { get; set; } /// public string Vessel_Name_Or_Flight { get; set; } /// public string Bill_Of_Lading { get; set; } /// public string Shipping_Condition { get; set; } /// public object Shipping_Month { get; set; } } /// [Serializable()] [DesignerCategory("code")] [XmlType(AnonymousType = true)] public partial class AdvanceShipmentNotificationLineItem { public string Item_Line_Number { get; set; } public string LEX_PN { get; set; } public int Container_Qty { get; set; } public int Pallet_Qty { get; set; } public int Pallets { get; set; } public string Unit_Of_Measure { get; set; } public string LXK_Description { get; set; } /// public string Serial_No { get; set; } } }