NewGaoKaoApi/PaymentSDK/AliPay/Domain/InboundOrder.cs

49 lines
1.3 KiB
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>
/// InboundOrder Data Structure.
/// </summary>
[Serializable]
public class InboundOrder : AopObject
{
/// <summary>
/// 扩展字段json格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 入库业务类型BHRK=补货入库CGRK=采购入库CGTHRK=采购退货入库DDTHRK=订单退货入库PDRK=盘点入库
/// </summary>
[XmlElement("inbound_type")]
public string InboundType { get; set; }
/// <summary>
/// 跟此入库通知单关联的外部业务订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { 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; }
}
}