using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcoCplifeBillBatchqueryResponse. /// public class AlipayEcoCplifeBillBatchqueryResponse : AopResponse { /// /// 若查询到符合条件的账单条目,返回结果集 /// [XmlArray("bill_result_set")] [XmlArrayItem("c_p_bill_result_set")] public List BillResultSet { get; set; } /// /// 当前页码 /// [XmlElement("current_page_num")] public long CurrentPageNum { get; set; } /// /// 符合条件的总结果数 /// [XmlElement("total_bill_count")] public long TotalBillCount { get; set; } } }