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