NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoanapplyPromot...

73 lines
3.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>
/// MybankCreditLoanapplyPromotionDynamicurlGetModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoanapplyPromotionDynamicurlGetModel : AopObject
{
/// <summary>
/// 机构合约编号商户接入企业信贷业务时自动分配获取地址https://partner.mybank.cn/cooperation/myCooperation.htm路径我的合作-查看详情-开发接口调用-接口合约编号;
/// </summary>
[XmlElement("arrangement_no")]
public string ArrangementNo { get; set; }
/// <summary>
/// 部门编码是网商机构门户内维护的组织结构中部门的唯一编号由网商机构门户生成后提供给合作机构参数staff_type为01或03时此参数必填
/// </summary>
[XmlElement("dept_code")]
public string DeptCode { get; set; }
/// <summary>
/// 渠道编码是网商机构门户内维护的推广渠道的唯一编号由网商机构门户生成后提供给合作机构参数staff_type为01或03时此参数必填
/// </summary>
[XmlElement("op_ch_code")]
public string OpChCode { get; set; }
/// <summary>
/// 被推荐人的证件名字当staff_type为03时需要填写passiver_cert_no + passiver_cert_name或者passiver_id不能同时为空。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户同人校验
/// </summary>
[XmlElement("passiver_cert_name")]
public string PassiverCertName { get; set; }
/// <summary>
/// 被推荐人的证件号当staff_type为03时需要填写passiver_cert_no + passiver_cert_name或者passiver_id不能同时为空。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户同人校验
/// </summary>
[XmlElement("passiver_cert_no")]
public string PassiverCertNo { get; set; }
/// <summary>
/// 被推荐人的支付宝ID当staff_type为03时需要填写passiver_cert_no + passiver_cert_name或者passiver_id不能同时为空。作用校验机构提供的用户和支付宝当前登录的用户为同一用户即用户同人校验
/// </summary>
[XmlElement("passiver_id")]
public string PassiverId { get; set; }
/// <summary>
/// 合作推广机构的银行参与者id是在网商银行创建会员后生成的id网商银行会员的唯一标识参数staff_type为01或03时此参数必填
/// </summary>
[XmlElement("recmd_inst_ip_id")]
public string RecmdInstIpId { get; set; }
/// <summary>
/// 合作推广机构的银行参与者角色id是在网商银行创建会员后生成的角色id网商银行会员角色的唯一标识参数staff_type为01或03时此参数必填
/// </summary>
[XmlElement("recmd_inst_ip_role_id")]
public string RecmdInstIpRoleId { get; set; }
/// <summary>
/// 请求的实体ID跟staff_type对应若staff_type是01则为支付宝账号若staff_type是02则为生活号在支付宝开放平台对应的app_id若staff_type是03则为机构在支付宝开放平台对应的app_id
/// </summary>
[XmlElement("staff_id")]
public string StaffId { get; set; }
/// <summary>
/// 请求的主体类型01表示普通用户类型02表示生活号类型03表示机构类型
/// </summary>
[XmlElement("staff_type")]
public string StaffType { get; set; }
}
}