43 lines
979 B
C#
43 lines
979 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
using Alipay.AopSdk.Core.Domain;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// KoubeiCraftsmanDataWorkBatchqueryResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class KoubeiCraftsmanDataWorkBatchqueryResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 当前页码
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("current_page_no")]
|
||
|
|
public long CurrentPageNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 每页记录数
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("page_size")]
|
||
|
|
public long PageSize { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 总页码数目
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("total_page_no")]
|
||
|
|
public long TotalPageNo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 总共手艺人作品数目
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("total_works")]
|
||
|
|
public long TotalWorks { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 作品信息列表
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("works")]
|
||
|
|
|
||
|
|
public List<CraftsmanWorkOpenModel> Works { get; set; }
|
||
|
|
}
|
||
|
|
}
|