NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailWmsOutboundorde...

34 lines
1002 B
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiRetailWmsOutboundorderBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsOutboundorderBatchqueryModel : AopObject
{
/// <summary>
/// 操作人信息
/// </summary>
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
/// <summary>
/// 外部业务单号出库通知单id列表列表二选一
/// </summary>
[XmlArray("out_biz_no_list")]
[XmlArrayItem("string")]
public List<string> OutBizNoList { get; set; }
/// <summary>
/// 出库通知单id列表与外部业务单号列表二选一
/// </summary>
[XmlArray("outbound_order_id_list")]
[XmlArrayItem("string")]
public List<string> OutboundOrderIdList { get; set; }
}
}