using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CCInfo Data Structure.
///
[Serializable]
public class CCInfo : AopObject
{
///
/// 收件人详细地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 清关资质等扩展信息
///
[XmlElement("cc_ext")]
public string CcExt { get; set; }
///
/// 国家及地区编码
///
[XmlElement("cr_code")]
public string CrCode { get; set; }
///
/// 国家及地区描述
///
[XmlElement("cr_desc")]
public string CrDesc { get; set; }
///
/// 邮箱
///
[XmlElement("email")]
public string Email { get; set; }
///
/// 物料中文名
///
[XmlElement("item_alias_name")]
public string ItemAliasName { get; set; }
///
/// 物料描述:含材质、用途
///
[XmlElement("item_desc")]
public string ItemDesc { get; set; }
///
/// 物料id
///
[XmlElement("item_id")]
public string ItemId { get; set; }
///
/// 物料英文名
///
[XmlElement("item_name")]
public string ItemName { get; set; }
///
/// 物料份数
///
[XmlElement("quantity")]
public long Quantity { get; set; }
///
/// 收件公司全名
///
[XmlElement("recipient_entity_name")]
public string RecipientEntityName { get; set; }
///
/// 收件人姓名: first name + last name 空格分隔
///
[XmlElement("recipient_name")]
public string RecipientName { get; set; }
///
/// 收件人电话
///
[XmlElement("recipient_phone")]
public string RecipientPhone { get; set; }
///
/// 申报价值单件价
///
[XmlElement("unit_price")]
public string UnitPrice { get; set; }
///
/// 邮编
///
[XmlElement("zip_code")]
public string ZipCode { get; set; }
}
}