using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MorphoPaginator Data Structure. /// [Serializable] public class MorphoPaginator : AopObject { /// /// 总页数 /// [XmlElement("page_count")] public long PageCount { get; set; } /// /// 分页查询页码 /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 分页查询分页大小 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 总数 /// [XmlElement("total")] public long Total { get; set; } } }