NewGaoKaoApi/PaymentSDK/AliPay/Domain/LogisticsExternalInfo.cs

27 lines
938 B
C#
Raw 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// LogisticsExternalInfo Data Structure.
/// </summary>
[Serializable]
public class LogisticsExternalInfo : AopObject
{
/// <summary>
/// 在CUPBOARD取餐柜模式 场景),为指定设备编号,单元格编号; 约束定义: 支持批量传入多个单元格编号; 不支持多个设备编号
/// </summary>
[XmlArray("carrier_info_list")]
[XmlArrayItem("logistics_external_carrier_info")]
public List<LogisticsExternalCarrierInfo> CarrierInfoList { get; set; }
/// <summary>
/// 在CUPBOARD取餐柜模式 场景),为指定单元格数量,系统按照默认规则分配;
/// </summary>
[XmlElement("carrier_sub_count")]
public long CarrierSubCount { get; set; }
}
}