81 lines
2.6 KiB
C#
81 lines
2.6 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MybankCreditSceneprodBillSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MybankCreditSceneprodBillSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 网商申请单号(必须S结尾) 资产转让后资产持有人同步账单时必填
|
||
/// </summary>
|
||
[XmlElement("app_seq_no")]
|
||
public string AppSeqNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 账单列表
|
||
/// </summary>
|
||
[XmlArray("bill_list")]
|
||
[XmlArrayItem("scene_prod_bill_detail")]
|
||
public List<SceneProdBillDetail> BillList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户姓名 资产转让后资产持有人同步账单时必填
|
||
/// </summary>
|
||
[XmlElement("cert_name")]
|
||
public string CertName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 证件号码 资产转让后资产持有人同步账单时必填
|
||
/// </summary>
|
||
[XmlElement("cert_no")]
|
||
public string CertNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支用号 资产转让后资产持有人同步账单时必填
|
||
/// </summary>
|
||
[XmlElement("drawdown_no")]
|
||
public string DrawdownNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展字段,用于适配不同机构的特殊要求
|
||
/// </summary>
|
||
[XmlElement("ext_param")]
|
||
public string ExtParam { 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>
|
||
/// 外部站点,比如: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; }
|
||
}
|
||
}
|