123 lines
3.0 KiB
C#
123 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace HUIWEI.SAL_SaleOrder
|
|
{
|
|
|
|
// 注意: 生成的代码可能至少需要 .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; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement(DataType = "date")]
|
|
public DateTime PO_Date { get; set; }
|
|
|
|
/// <remarks/>
|
|
public ulong LEX_PO { get; set; }
|
|
|
|
/// <remarks/>
|
|
public object Internal_PO { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement(DataType = "date")]
|
|
public DateTime Delivery_Date { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Ship_Address { get; set; }
|
|
|
|
/// <remarks/>
|
|
public ulong Lot_Number { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement("Actual_Ex-factory_Date", DataType = "date")]
|
|
public DateTime Actual_Exfactory_Date { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement(DataType = "date")]
|
|
public DateTime 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
|
|
{
|
|
|
|
/// <remarks/>
|
|
public byte Item_Line_Number { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string LEX_PN { get; set; }
|
|
|
|
/// <remarks/>
|
|
public ushort Container_Qty { get; set; }
|
|
|
|
/// <remarks/>
|
|
public byte Pallet_Qty { get; set; }
|
|
|
|
/// <remarks/>
|
|
public byte Pallets { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Unit_Of_Measure { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string LXK_Description { get; set; }
|
|
|
|
/// <remarks/>
|
|
public string Serial_No { get; set; }
|
|
}
|
|
|
|
|
|
}
|