using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// KoubeiItemExtitemBatchqueryResponse. /// public class KoubeiItemExtitemBatchqueryResponse : AopResponse { /// /// 商品信息列表 /// [JsonProperty("model_list")] public List ModelList { get; set; } /// /// 当前页码 /// [JsonProperty("page_num")] public string PageNum { get; set; } /// /// 分页大小 /// [JsonProperty("page_size")] public string PageSize { get; set; } /// /// 总记录数 /// [JsonProperty("total_size")] public string TotalSize { get; set; } } }