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