13 lines
232 B
C#
Raw Permalink Normal View History

2025-12-17 10:32:52 +08:00
namespace SqlSugar;
public interface IPagination
{
/// <summary>
/// 当前页码
/// </summary>
int PageNo { get; set; }
/// <summary>
/// 页码容量
/// </summary>
int PageSize { get; set; }
}