using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BankcardExtInfo Data Structure.
///
[Serializable]
public class BankcardExtInfo : AopObject
{
///
/// 收款账户类型。 1:对公(在金融机构开设的公司账户),如果银行卡为对公,必须传递省市支行信息或者联行号 2:对私(在金融机构开设的个人账户)
///
[XmlElement("account_type")]
public string AccountType { get; set; }
///
/// 银行支行联行号
///
[XmlElement("bank_code")]
public string BankCode { get; set; }
///
/// 收款银行所属支行
///
[XmlElement("inst_branch_name")]
public string InstBranchName { get; set; }
///
/// 收款银行所在市
///
[XmlElement("inst_city")]
public string InstCity { get; set; }
///
/// 机构名称
///
[XmlElement("inst_name")]
public string InstName { get; set; }
///
/// 银行所在省份
///
[XmlElement("inst_province")]
public string InstProvince { get; set; }
}
}