using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOverseasTuitionSchoolpaymentBatchqueryModel Data Structure. /// [Serializable] public class AlipayOverseasTuitionSchoolpaymentBatchqueryModel : AopObject { /// /// ISV入驻签约PID /// [XmlElement("isv_pid")] public string IsvPid { get; set; } /// /// 扩展字段 /// [XmlElement("pass_through_info")] public string PassThroughInfo { get; set; } /// /// 一次最多输入100个订单组 /// [XmlArray("payment_orders")] [XmlArrayItem("tuition_query_order")] public List PaymentOrders { get; set; } } }