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

37 lines
967 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiRetailWmsOutboundorderConfirmModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsOutboundorderConfirmModel : AopObject
{
/// <summary>
/// 操作人信息
/// </summary>
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
/// <summary>
/// 出库通知单id
/// </summary>
[XmlElement("outbound_order_id")]
public string OutboundOrderId { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 出库单最终状态FINISHED完成CANCELLED取消
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}