namespace SqlSugar; public interface IPagination { /// /// 当前页码 /// int PageNo { get; set; } /// /// 页码容量 /// int PageSize { get; set; } }