43 lines
950 B
C#
43 lines
950 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|