using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasOpenPreorderCreateModel Data Structure. /// [Serializable] public class AlipayOverseasOpenPreorderCreateModel : AopObject { /// /// ISV机构信息 /// [XmlElement("agent_info")] public TuitionISVAgentInfoDTO AgentInfo { get; set; } /// /// 付款信息 /// [XmlElement("payment_info")] public TuitionISVRequestPaymentInfoDTO PaymentInfo { get; set; } /// /// 单号 /// [XmlElement("pre_order_id")] public string PreOrderId { get; set; } /// /// 学生信息 /// [XmlElement("student_info")] public TuitionISVStudentInfoDTO StudentInfo { get; set; } } }