摘要: 首先写一个接口 1 2 3 4 5 6 public interface IPagedList { int CurrentPageIndex { get; set; } int PageSize { get; set; } int TotalItemCount { get; set; } } 1 2 阅读全文