using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenMiniItemPageQueryResponse. /// public class AlipayOpenMiniItemPageQueryResponse : AopResponse { /// /// 当前页码 /// [XmlElement("current_page_num")] public long CurrentPageNum { get; set; } /// /// 小程序商品列表 /// [XmlArray("data_list")] [XmlArrayItem("item_v_o")] public List DataList { get; set; } /// /// 每页项数 /// [XmlElement("per_page_count")] public long PerPageCount { get; set; } /// /// 总共项数 /// [XmlElement("total_count")] public long TotalCount { get; set; } } }