using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TuitionBankAccountDetail Data Structure.
///
[Serializable]
public class TuitionBankAccountDetail : AopObject
{
///
/// 银行收款账号
///
[XmlElement("bank_account_no")]
public string BankAccountNo { get; set; }
///
/// 银行swiftCode/BIC
///
[XmlElement("bank_bic")]
public string BankBic { get; set; }
///
/// 银行名称
///
[XmlElement("bank_name")]
public string BankName { get; set; }
///
/// 银行收款账户名
///
[XmlElement("holder_account_name")]
public TuitionUserName HolderAccountName { get; set; }
///
/// 银行收款账户地址
///
[XmlElement("holder_address")]
public TuitionAddress HolderAddress { get; set; }
///
/// 本地银行清算号
///
[XmlElement("routing_number")]
public string RoutingNumber { get; set; }
}
}