using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TuitionISVResponsePaymentInfoDTO Data Structure. /// [Serializable] public class TuitionISVResponsePaymentInfoDTO : AopObject { /// /// 账户名 /// [XmlElement("account_name")] public string AccountName { get; set; } /// /// 账号 /// [XmlElement("account_no")] public string AccountNo { get; set; } /// /// 金额 /// [XmlElement("amount")] public TuitionMoneyDTO Amount { get; set; } /// /// bank_code /// [XmlElement("bank_code")] public string BankCode { get; set; } /// /// 国家码 /// [XmlElement("country")] public string Country { get; set; } /// /// 截止日期 /// [XmlElement("deadline")] public string Deadline { get; set; } /// /// 付款人身份证 /// [XmlElement("payer_identity_card_number")] public string PayerIdentityCardNumber { get; set; } /// /// 付款手机号 /// [XmlElement("payer_phone_number")] public string PayerPhoneNumber { get; set; } /// /// 附言 /// [XmlElement("post_script")] public string PostScript { get; set; } /// /// 学校名称 /// [XmlElement("school_name")] public string SchoolName { get; set; } /// /// swift code /// [XmlElement("swift_code")] public string SwiftCode { get; set; } } }