1
This commit is contained in:
32
03.珠海市汇威精密制造有限公司/HUIWEI/SAL_SaleOrder/PurchaseOrder.cs
Normal file
32
03.珠海市汇威精密制造有限公司/HUIWEI/SAL_SaleOrder/PurchaseOrder.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace HUIWEI.SAL_SaleOrder
|
||||
{
|
||||
[Serializable()]
|
||||
[DesignerCategory("code")]
|
||||
[XmlType(AnonymousType = true)]
|
||||
[XmlRoot(elementName: "PurchaseOrder", IsNullable = false)]
|
||||
public class PurchaseOrder
|
||||
{
|
||||
/// <remarks/>
|
||||
public PurchaseOrderTradingPartnerMetadata TradingPartnerMetadata { get; set; }
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[Serializable()]
|
||||
[DesignerCategory("code")]
|
||||
[XmlType(AnonymousType = true)]
|
||||
public partial class PurchaseOrderTradingPartnerMetadata
|
||||
{
|
||||
/// <remarks/>
|
||||
public string SenderName { get; set; }
|
||||
|
||||
/// <remarks/>
|
||||
public string ReceiverName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user