You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/Tool/PagedList.cs

30 lines
881 B
C#

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tool
{
public class PagedList<T>
{
public List<T> Items { get; private set; } // 存储当前页的元素
3 weeks ago
public int PageIndex { get; private set; } // 当前页码从1开始
1 month ago
public int PageSize { get; private set; } // 每页的元素数
public int TotalCount { get; private set; } // 总记录数
public int TotalPages => (int)Math.Ceiling((double)TotalCount / PageSize); // 总页数
3 weeks ago
public bool HasNextPage => PageIndex < TotalPages;
1 month ago
public PagedList(List<T> items, int count, int pageIndex, int pageSize)
{
Items = items;
TotalCount = count;
PageIndex = pageIndex;
PageSize = pageSize;
}
}
}