108 lines
2.6 KiB
C#
108 lines
2.6 KiB
C#
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。
|
|
/// <remarks/>
|
|
[Serializable()]
|
|
[DesignerCategory("code")]
|
|
[XmlType(AnonymousType = true)]
|
|
[XmlRoot(Namespace = "", IsNullable = false)]
|
|
public partial class AdvanceShipmentNotification
|
|
{
|
|
/// <remarks/>
|
|
public AdvanceShipmentNotificationHeader Header { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement("LineItem")]
|
|
public AdvanceShipmentNotificationLineItem[] LineItem { get; set; }
|
|
}
|
|
|
|
/// <remarks/>
|
|
[Serializable()]
|
|
[DesignerCategory("code")]
|
|
[XmlType(AnonymousType = true)]
|
|
public partial class AdvanceShipmentNotificationHeader
|
|
{
|
|
/// <remarks/>
|
|
public string Supplier { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Buyer { get; set; }
|
|
|
|
public string PO_Date { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string LEX_PO { get; set; }
|
|
|
|
/// <remarks/>
|
|
public object Internal_PO { get; set; }
|
|
|
|
public string Delivery_Date { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Ship_Address { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Lot_Number { get; set; }
|
|
|
|
[XmlElement("Actual_Ex-factory_Date")]
|
|
public string Actual_Exfactory_Date { get; set; }
|
|
|
|
public string ETD_HK { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Container_Number { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Container_Type { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Carrier { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Vessel_Name_Or_Flight { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Bill_Of_Lading { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Shipping_Condition { get; set; }
|
|
|
|
/// <remarks/>
|
|
public object Shipping_Month { get; set; }
|
|
}
|
|
|
|
/// <remarks/>
|
|
[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; }
|
|
|
|
/// <remarks/>
|
|
public string Serial_No { get; set; }
|
|
}
|
|
|
|
|
|
}
|