NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoanapplyInstur...

85 lines
3.6 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>
/// MybankCreditLoanapplyInsturlQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoanapplyInsturlQueryModel : AopObject
{
/// <summary>
/// 机构合约编号商户接入企业信贷业务时自动分配获取地址https://partner.mybank.cn/cooperation/myCooperation.htm路径我的合作-查看详情-开发接口调用-接口合约编号;
/// </summary>
[XmlElement("arrangement_no")]
public string ArrangementNo { get; set; }
/// <summary>
/// 业务接入类型取值Dsd、PtdDsd为大数据贷款类型网商贷专业版、基础版接口包对应合作机构请选择此类型即合作机构推送数据网商计算授信网商承担风险Ptd为平台贷款类型合作机构自行计算授信并承担风险
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 机构内部客户身份证号当biz_type为Dsd时cert_no +user_name或者user_id不能同时为null。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户合法性校验。
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 机构客群标签仅当arrangement_no存在的时候此值可以为空
/// </summary>
[XmlElement("cust_group_code")]
public string CustGroupCode { get; set; }
/// <summary>
/// 机构内部客户工商注册号;
/// </summary>
[XmlElement("ext_business_license_no")]
public string ExtBusinessLicenseNo { get; set; }
/// <summary>
/// 机构用户ID机构须保证编号唯一
/// </summary>
[XmlElement("ext_user_id")]
public string ExtUserId { get; set; }
/// <summary>
/// 机构内部客户手机号如果没有默认值为11位0
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 运营产品编码仅当arrangement_no存在的时候此值可以为空
/// </summary>
[XmlElement("op_pd_code")]
public string OpPdCode { get; set; }
/// <summary>
/// 入驻的机构的渠道编号,由业务接口人来分配
/// </summary>
[XmlElement("org_channel_code")]
public string OrgChannelCode { get; set; }
/// <summary>
/// 跳转链接的类型取值scheme、landingscheme为支付宝扫码跳转链接landing为外部App跳转链接
/// </summary>
[XmlElement("url_type")]
public string UrlType { get; set; }
/// <summary>
/// 机构内部客户的支付宝ID当biz_type为Dsd时cert_no +user_name或者user_id不能同时为null。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户合法性校验。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 机构内部客户姓名当biz_type为Dsd时cert_no + user_name或者user_id不能同时为null。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户合法性校验。
/// </summary>
[XmlElement("user_name")]
public string UserName { get; set; }
}
}