NewGaoKaoApi/PaymentSDK/AliPay/Domain/LogisticsInfo.cs

31 lines
710 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// LogisticsInfo Data Structure.
/// </summary>
[Serializable]
public class LogisticsInfo : AopObject
{
/// <summary>
/// 物流公司code
/// </summary>
[XmlElement("logistics_code")]
public string LogisticsCode { get; set; }
/// <summary>
/// 物流公司名称
/// </summary>
[XmlElement("logistics_name")]
public string LogisticsName { get; set; }
/// <summary>
/// 物流单号
/// </summary>
[XmlElement("logistics_no")]
public string LogisticsNo { get; set; }
}
}