Infrastructure/OpenAuth.App/BaseApp/Base/PageReq.cs

25 lines
491 B
C#
Raw Normal View History

2025-01-17 14:08:37 +08:00
namespace OpenAuth.App.BaseApp.Base
2024-11-13 09:19:06 +08:00
{
public class PageReq
{
/// <summary>
/// 页码
/// </summary>
/// <example>1</example>
public int page { get; set; }
2025-01-17 14:08:37 +08:00
2024-11-13 09:19:06 +08:00
/// <summary>
/// 每页条数
/// </summary>
/// <example>10</example>
public int limit { get; set; }
public string key { get; set; }
public PageReq()
{
page = 1;
limit = 10;
}
}
2025-01-17 14:08:37 +08:00
}