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