67 lines
1.9 KiB
C#
67 lines
1.9 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayCreditAutofinanceLoanApplyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayCreditAutofinanceLoanApplyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 区域
|
||
/// </summary>
|
||
[XmlElement("area")]
|
||
public string Area { get; set; }
|
||
|
||
/// <summary>
|
||
/// 征信结果回调地址
|
||
/// </summary>
|
||
[XmlElement("backurl")]
|
||
public string Backurl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展参数信息,json格式,针对不同的业务平台有不同的参数,目前大搜车业务支持的参数有:firstpayamt 首付租金,firstpayprop 首付比例,lastpayamt 回购尾款,loantenor 贷款期数,monthpayamt 每月还款额度
|
||
/// </summary>
|
||
[XmlElement("extparam")]
|
||
public string Extparam { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部平台宝贝ID
|
||
/// </summary>
|
||
[XmlElement("itemid")]
|
||
public string Itemid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 机构编码
|
||
/// </summary>
|
||
[XmlElement("orgcode")]
|
||
public string Orgcode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线;需保证在外部平台端不重复
|
||
/// </summary>
|
||
[XmlElement("outorderno")]
|
||
public string Outorderno { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支付宝账号数字ID
|
||
/// </summary>
|
||
[XmlElement("uid")]
|
||
public string Uid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 核身VID
|
||
/// </summary>
|
||
[XmlElement("verifyid")]
|
||
public string Verifyid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 当前安装的支付宝钱包版本号
|
||
/// </summary>
|
||
[XmlElement("version")]
|
||
public string Version { get; set; }
|
||
}
|
||
}
|