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