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