using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopSummaryBatchqueryResponse. /// public class AlipayOfflineMarketShopSummaryBatchqueryResponse : AopResponse { /// /// 当前页码 /// [XmlElement("current_page_no")] public string CurrentPageNo { get; set; } /// /// 每页记录数 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 支付宝门店摘要信息列表 /// [XmlArray("shop_summary_infos")] [XmlArrayItem("shop_summary_query_response")] public List ShopSummaryInfos { get; set; } /// /// 总记录数 /// [XmlElement("total_items")] public string TotalItems { get; set; } /// /// 总页码数目 /// [XmlElement("total_page_no")] public string TotalPageNo { get; set; } } }