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