25 lines
658 B
C#
25 lines
658 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// CustomsDeclareBuyerInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CustomsDeclareBuyerInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 订购人身份证号。即订购人留在商户处的身份证信息
|
|
/// </summary>
|
|
[XmlElement("buyer_cert_no")]
|
|
public string BuyerCertNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订购人姓名。即订购人留在商户处的姓名信息
|
|
/// </summary>
|
|
[XmlElement("buyer_name")]
|
|
public string BuyerName { get; set; }
|
|
}
|
|
}
|