NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainTrad...

37 lines
1.0 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>
/// MybankCreditSupplychainTradePayableQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainTradePayableQueryModel : AopObject
{
/// <summary>
/// 买家会员信息
/// </summary>
[XmlElement("buyer")]
public Member Buyer { get; set; }
/// <summary>
/// 外部订单号格式机构ipRoleId_外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 销售产品码
/// </summary>
[XmlElement("sale_pd_code")]
public string SalePdCode { get; set; }
/// <summary>
/// FACTORING保理PREPAYMENT预付融资CREDITPAY信任付PREPAYBILL预付电票
/// </summary>
[XmlElement("trade_type")]
public string TradeType { get; set; }
}
}