NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankPaymentTradeNormalpay...

91 lines
2.7 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>
/// MybankPaymentTradeNormalpayOrderCreateModel Data Structure.
/// </summary>
[Serializable]
public class MybankPaymentTradeNormalpayOrderCreateModel : AopObject
{
/// <summary>
/// 订单金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 渠道类型,表示请求的来源
/// </summary>
[XmlElement("biz_channel")]
public string BizChannel { get; set; }
/// <summary>
/// 外部平台的单据号,网商订单与外部平台订单一一对应
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 用户的网商卡号
/// </summary>
[XmlElement("card_no")]
public string CardNo { get; set; }
/// <summary>
/// 币种
/// </summary>
[XmlElement("currency_value")]
public string CurrencyValue { get; set; }
/// <summary>
/// 扩展参数内容是JSON格式并用urlconde编码按场景约定具体字段 ETC场景 etc_corp高速公司名称
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 用户在网商的会员ID
/// </summary>
[XmlElement("ipid")]
public string Ipid { get; set; }
/// <summary>
/// 用户在网商的会员角色ID
/// </summary>
[XmlElement("iproleid")]
public string Iproleid { get; set; }
/// <summary>
/// 订单类型
/// </summary>
[XmlElement("order_type")]
public string OrderType { get; set; }
/// <summary>
/// 收方资产信息内容是JSON格式并用urlencode编码按场景约定具体字段
/// </summary>
[XmlElement("payee_fund_detail")]
public string PayeeFundDetail { get; set; }
/// <summary>
/// 付方资产信息内容是JSON格式并用urlencode编码按场景约定具体字段
/// </summary>
[XmlElement("payer_fund_detail")]
public string PayerFundDetail { get; set; }
/// <summary>
/// 请求流水号,表示外部一次请求,幂等字段
/// </summary>
[XmlElement("request_no")]
public string RequestNo { get; set; }
/// <summary>
/// 请求时间格式是yyyyMMddHHmmss
/// </summary>
[XmlElement("request_time")]
public string RequestTime { get; set; }
}
}