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

31 lines
876 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiRetailWmsOutboundorderQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsOutboundorderQueryModel : AopObject
{
/// <summary>
/// 是否需要通知单明细true则返回明细
/// </summary>
[XmlElement("need_detail")]
public bool NeedDetail { get; set; }
/// <summary>
/// 外部业务单号出库通知单id二选一必填一个
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 通知单id与业务单号二选一必选一个
/// </summary>
[XmlElement("outbound_order_id")]
public string OutboundOrderId { get; set; }
}
}