Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiItemBatchqueryResponse.cs

43 lines
950 B
C#
Raw Normal View History

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