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