55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MybankFinanceAccountRysenterpriseQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MybankFinanceAccountRysenterpriseQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 融易收资金账户
|
|
/// </summary>
|
|
[XmlElement("account_no")]
|
|
public string AccountNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户编号
|
|
/// </summary>
|
|
[XmlElement("ip_id")]
|
|
public string IpId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户角色号
|
|
/// </summary>
|
|
[XmlElement("ip_role_id")]
|
|
public string IpRoleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 阿里云用户Id
|
|
/// </summary>
|
|
[XmlElement("out_channel_id")]
|
|
public string OutChannelId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部渠道类型
|
|
/// </summary>
|
|
[XmlElement("out_channel_type")]
|
|
public string OutChannelType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场景码
|
|
/// </summary>
|
|
[XmlElement("scene_code")]
|
|
public string SceneCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
[XmlElement("tnt_inst_id")]
|
|
public string TntInstId { get; set; }
|
|
}
|
|
}
|