106 lines
3.5 KiB
C#
106 lines
3.5 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MybankCreditSceneprodPaymentApplyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MybankCreditSceneprodPaymentApplyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 业务金额,单位分
|
||
/// </summary>
|
||
[XmlElement("amount")]
|
||
public string Amount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 业务产品编码,64个字符以内
|
||
/// </summary>
|
||
[XmlElement("biz_product_code")]
|
||
public string BizProductCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 业务类型,目前只支持两种:REPAY(还款),ENCASH(放款)
|
||
/// </summary>
|
||
[XmlElement("biz_type")]
|
||
public string BizType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户姓名
|
||
/// </summary>
|
||
[XmlElement("cust_name")]
|
||
public string CustName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支用号
|
||
/// </summary>
|
||
[XmlElement("drawdown_no")]
|
||
public string DrawdownNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户的身份证号,尾数是X的请使用大写字母
|
||
/// </summary>
|
||
[XmlElement("id_card")]
|
||
public string IdCard { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户支付宝账户,与UID字段不能同时为空
|
||
/// </summary>
|
||
[XmlElement("login_account")]
|
||
public string LoginAccount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 网商业务订单号,64个字符以内、只能包含字母、数字、下划线;需保证在外部网商端不重复
|
||
/// </summary>
|
||
[XmlElement("mybk_order_no")]
|
||
public string MybkOrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线;需保证在外部平台端不重复
|
||
/// </summary>
|
||
[XmlElement("out_order_no")]
|
||
public string OutOrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展参数,JSON格式,100个字符以内,在代收请求时需要附带期数信息在扩展参数中,代付的场景下是没有的,具体参数:tenor:期次,
|
||
/// </summary>
|
||
[XmlElement("out_param")]
|
||
public string OutParam { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部请求流水号,32个字符以内、只能包含字母、数字、下划线;需保证在外部平台端不重复
|
||
/// </summary>
|
||
[XmlElement("out_seq_no")]
|
||
public string OutSeqNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收款人信息
|
||
/// </summary>
|
||
[XmlArray("payee_account_list")]
|
||
[XmlArrayItem("scene_prod_payment_account_info")]
|
||
public List<SceneProdPaymentAccountInfo> PayeeAccountList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 付款人信息
|
||
/// </summary>
|
||
[XmlArray("payer_account_list")]
|
||
[XmlArrayItem("scene_prod_payment_account_info")]
|
||
public List<SceneProdPaymentAccountInfo> PayerAccountList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 代收付产品编码,64个字符以内
|
||
/// </summary>
|
||
[XmlElement("payment_product_code")]
|
||
public string PaymentProductCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户支付宝账号数字ID,与支付宝账户字段不能同时为空
|
||
/// </summary>
|
||
[XmlElement("user_id")]
|
||
public string UserId { get; set; }
|
||
}
|
||
}
|