49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// DeliveryPackageDetail Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class DeliveryPackageDetail : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 运单号
|
|
/// </summary>
|
|
[XmlElement("express_code")]
|
|
public string ExpressCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[XmlElement("gmt_create")]
|
|
public string GmtCreate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改时间
|
|
/// </summary>
|
|
[XmlElement("gmt_modified")]
|
|
public string GmtModified { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货品编码
|
|
/// </summary>
|
|
[XmlElement("goods_code")]
|
|
public string GoodsCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货品数量
|
|
/// </summary>
|
|
[XmlElement("goods_quantity")]
|
|
public string GoodsQuantity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包裹编号
|
|
/// </summary>
|
|
[XmlElement("package_code")]
|
|
public string PackageCode { get; set; }
|
|
}
|
|
}
|