79 lines
2.3 KiB
C#
79 lines
2.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MyBkAccountVO Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MyBkAccountVO : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 账号外标,如支付宝登录号
|
||
/// </summary>
|
||
[XmlElement("account_ext_no")]
|
||
public string AccountExtNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 金融机构支行联行号
|
||
/// </summary>
|
||
[XmlElement("account_fip_branch_code")]
|
||
public string AccountFipBranchCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 金融机构码
|
||
/// </summary>
|
||
[XmlElement("account_fip_code")]
|
||
public string AccountFipCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 金融机构名称
|
||
/// </summary>
|
||
[XmlElement("account_fip_name")]
|
||
public string AccountFipName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 资金账号,支付宝2088开头或银行卡号
|
||
/// </summary>
|
||
[XmlElement("account_no")]
|
||
public string AccountNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 账号分类,ALIPAY("ALIPAY", "Alipay", "支付宝账号", "支付宝账号"),MY_BANK("MY_BANK", "MayiBank", "网商银行账号", "网商银行账号"),OUT_BANK("OUT_BANK", "OutBank", "外部银行账号", "外部银行账号")
|
||
/// </summary>
|
||
[XmlElement("account_type")]
|
||
public string AccountType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否可用,Y-可用;N-不可用
|
||
/// </summary>
|
||
[XmlElement("available")]
|
||
public string Available { get; set; }
|
||
|
||
/// <summary>
|
||
/// 账户对公对私类型,P-对私,B-对公
|
||
/// </summary>
|
||
[XmlElement("bank_card_category")]
|
||
public string BankCardCategory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 持卡人姓名
|
||
/// </summary>
|
||
[XmlElement("card_holder_name")]
|
||
public string CardHolderName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 放款来源
|
||
/// </summary>
|
||
[XmlElement("grant_channel")]
|
||
public string GrantChannel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 账户不可用原因
|
||
/// </summary>
|
||
[XmlElement("refuse_code")]
|
||
public string RefuseCode { get; set; }
|
||
}
|
||
}
|