using System.Collections.Generic; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Commons.Pages { /// /// 保存分页请求的结果。 /// /// 返回结果集中的POCO类型 public class PageResult : CommonResult { public PageResult() { } public PageResult(bool success, string msg, object rows) { Success = success; ErrMsg = msg; ResData = rows; } public PageResult(long currentPage, long totalItems, long itemsPerPage) { CurrentPage = currentPage; TotalItems = totalItems; ItemsPerPage = itemsPerPage; } public PageResult(long currentPage, long totalPages, long totalItems, long itemsPerPage, List items, object context) : this(currentPage, totalPages, totalItems) { ItemsPerPage = itemsPerPage; Items = items; Context = context; } /// /// 当前页码。 /// public long CurrentPage { get; set; } /// /// 总页码数。 /// public long TotalPages { get; set; } /// /// 记录总数。 /// public long TotalItems { get; set; } /// /// 每页数量。 /// public long ItemsPerPage { get; set; } /// /// 当前结果集。 /// public List Items { get; set; } /// /// 自定义用户属性。 /// public object Context { get; set; } } }