using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TuitionISVRequestPaymentInfoDTO Data Structure.
///
[Serializable]
public class TuitionISVRequestPaymentInfoDTO : AopObject
{
///
/// 170
///
[XmlElement("account_id")]
public string AccountId { get; set; }
///
/// 留学金额
///
[XmlElement("amount")]
public TuitionMoneyDTO Amount { get; set; }
///
/// 证书列表
///
[XmlElement("certificate_list")]
public string CertificateList { 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; }
///
/// 学校id
///
[XmlElement("school_id")]
public string SchoolId { get; set; }
}
}