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

61 lines
1.7 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>
/// MybankCreditSupplychainTradePayModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainTradePayModel : AopObject
{
/// <summary>
/// 买家信息
/// </summary>
[XmlElement("buyer")]
public Member Buyer { get; set; }
/// <summary>
/// 渠道TMGXBL天猫供销保理TYZBL通用自保理TMZBL天猫自保理
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 业务扩展字段
/// </summary>
[XmlElement("ext_data")]
public string ExtData { get; set; }
/// <summary>
/// 外部订单号格式机构ipRoleId_外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 支付金额(单位:元),只支持两位小数点的正数
/// </summary>
[XmlElement("pay_amount")]
public string PayAmount { get; set; }
/// <summary>
/// 幂等编号,用于幂等控制,格式 instIpRoleId_yyyymmddhhmmss_8位uniqId
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 销售产品码
/// </summary>
[XmlElement("sale_pd_code")]
public string SalePdCode { get; set; }
/// <summary>
/// FACTORING保理PREPAYMENT预付融资CREDITPAY信任付
/// </summary>
[XmlElement("trade_type")]
public string TradeType { get; set; }
}
}