NewGaoKaoApi/PaymentSDK/AliPay/Domain/OutboundOrder.cs

55 lines
1.4 KiB
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>
/// OutboundOrder Data Structure.
/// </summary>
[Serializable]
public class OutboundOrder : AopObject
{
/// <summary>
/// 扩展字段json格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 外部业务单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 出库业务类型CGCK=采购出库DDCK=订单出库PDCK=盘点出库
/// </summary>
[XmlElement("outbound_type")]
public string OutboundType { get; set; }
/// <summary>
/// 收货人信息(商家采购必须传,其他订单类型非必传)
/// </summary>
[XmlElement("receiver_info_vo")]
public ReceiverInfoVO ReceiverInfoVo { get; set; }
/// <summary>
/// 备注信息。
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 发货人信息
/// </summary>
[XmlElement("sender_info_vo")]
public SenderInfoVO SenderInfoVo { get; set; }
/// <summary>
/// 仓库编号
/// </summary>
[XmlElement("warehouse_code")]
public string WarehouseCode { get; set; }
}
}