using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopBatchqueryResponse. /// public class AlipayOfflineMarketShopBatchqueryResponse : AopResponse { /// /// 当前页码 /// [XmlElement("current_pageno")] public string CurrentPageno { get; set; } /// /// 门店列表ID,逗号分隔 /// [XmlArray("shop_ids")] [XmlArrayItem("string")] public List ShopIds { get; set; } /// /// 总页码数目 /// [XmlElement("total_pageno")] public string TotalPageno { get; set; } } }