NewGaoKaoApi/PaymentSDK/AliPay/Domain/LogisticsExternalCarrierInf...

37 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// LogisticsExternalCarrierInfo Data Structure.
/// </summary>
[Serializable]
public class LogisticsExternalCarrierInfo : AopObject
{
/// <summary>
/// 物流载体指定标识; 在CUPBOARD取餐柜模式 场景)为指定设备号
/// </summary>
[XmlElement("carrier_no")]
public string CarrierNo { get; set; }
/// <summary>
/// 物流载体状态: WAIT_SIGN待签收 SIGN已签收 CANCELED已撤销
/// </summary>
[XmlElement("carrier_status")]
public string CarrierStatus { get; set; }
/// <summary>
/// 物流载体指定子物理标识; 在CUPBOARD取餐柜模式 场景:该标识为格子物理编号,即格子唯一标识
/// </summary>
[XmlElement("carrier_sub_id")]
public string CarrierSubId { get; set; }
/// <summary>
/// 物流载体指定子展示标识; 在CUPBOARD取餐柜模式 场景:该标识为格子展示编号,商户可自行设置
/// </summary>
[XmlElement("carrier_sub_no")]
public string CarrierSubNo { get; set; }
}
}