mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 19:22:50 +08:00
25 lines
564 B
C#
25 lines
564 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace FreeSql.Internal.Model
|
||
{
|
||
/// <summary>
|
||
/// 分页信息
|
||
/// </summary>
|
||
public class BasePagingInfo
|
||
{
|
||
/// <summary>
|
||
/// 第几页,从1开始
|
||
/// </summary>
|
||
public int PageNumber { get; set; }
|
||
/// <summary>
|
||
/// 每页多少
|
||
/// </summary>
|
||
public int PageSize { get; set; }
|
||
/// <summary>
|
||
/// 查询的记录数量
|
||
/// </summary>
|
||
public long Count { get; set; }
|
||
}
|
||
} |