NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailWmsDeliverypack...

37 lines
1016 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>
/// KoubeiRetailWmsDeliverypackageQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsDeliverypackageQueryModel : AopObject
{
/// <summary>
/// 运单号(与通知单号二选一,如果都存在,以通知单号查询)
/// </summary>
[XmlElement("express_code")]
public string ExpressCode { get; set; }
/// <summary>
/// 通知单id与运单号二选一
/// </summary>
[XmlElement("notice_order_id")]
public string NoticeOrderId { get; set; }
/// <summary>
/// 操作上下文
/// </summary>
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
/// <summary>
/// 作业id
/// </summary>
[XmlElement("work_order_id")]
public string WorkOrderId { get; set; }
}
}