13 lines
232 B
C#
13 lines
232 B
C#
|
|
namespace SqlSugar;
|
|||
|
|
|
|||
|
|
public interface IPagination
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前页码
|
|||
|
|
/// </summary>
|
|||
|
|
int PageNo { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 页码容量
|
|||
|
|
/// </summary>
|
|||
|
|
int PageSize { get; set; }
|
|||
|
|
}
|