using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiItemExtitemBatchqueryResponse. /// public class KoubeiItemExtitemBatchqueryResponse : AopResponse { /// /// 商品信息列表 /// [XmlArray("model_list")] [XmlArrayItem("ext_item")] public List ModelList { get; set; } /// /// 当前页码 /// [XmlElement("page_num")] public string PageNum { get; set; } /// /// 分页大小 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 总记录数 /// [XmlElement("total_size")] public string TotalSize { get; set; } } }