using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiItemBatchqueryResponse. /// public class KoubeiItemBatchqueryResponse : AopResponse { /// /// 当前页码 /// [XmlElement("current_page_no")] public string CurrentPageNo { get; set; } /// /// 商品信息 /// [XmlArray("item_infos")] [XmlArrayItem("item_query_response")] public List ItemInfos { get; set; } /// /// 每页记录数 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 总共商品数目 /// [XmlElement("total_items")] public string TotalItems { get; set; } /// /// 总页码数目 /// [XmlElement("total_page_no")] public string TotalPageNo { get; set; } } }