67 lines
2.2 KiB
C#
67 lines
2.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MybankCreditSceneprodLoanAssetTransferModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MybankCreditSceneprodLoanAssetTransferModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 接收资产方的网商银行账户, 内标,200开头,不是8888开头的
|
||
/// </summary>
|
||
[XmlElement("account_no")]
|
||
public string AccountNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 业务订单扩展字段,根据机构不同填入的参数会有区别
|
||
/// </summary>
|
||
[XmlElement("ext_param")]
|
||
public string ExtParam { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出资机构在网商的角色号(ipRoleId)
|
||
/// </summary>
|
||
[XmlElement("finance_inst_iprole_id")]
|
||
public string FinanceInstIproleId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 机构编码,机构接入场景金融平台时分配,固定值
|
||
/// </summary>
|
||
[XmlElement("org_code")]
|
||
public string OrgCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线;需保证在外部平台端不重复
|
||
/// </summary>
|
||
[XmlElement("out_order_no")]
|
||
public string OutOrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品编码,场景金融平台给机构提供的产品编码
|
||
/// </summary>
|
||
[XmlElement("product_code")]
|
||
public string ProductCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 服务机构在网商的角色号(ipRoleId)
|
||
/// </summary>
|
||
[XmlElement("service_inst_iprole_id")]
|
||
public string ServiceInstIproleId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部站点,比如:ALIPAY:支付宝站点,MYBANK:银行会员,B2B_CN:B2B中文站,B2B_EN:B2B国际站,TAOBAO:淘宝
|
||
/// </summary>
|
||
[XmlElement("site")]
|
||
public string Site { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部站点的userid,比如支付宝userid
|
||
/// </summary>
|
||
[XmlElement("site_user_id")]
|
||
public string SiteUserId { get; set; }
|
||
}
|
||
}
|