1
This commit is contained in:
21
Gatedge.ScanCode/Models/Dto/PageParam.cs
Normal file
21
Gatedge.ScanCode/Models/Dto/PageParam.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Gatedge.ScanCode.Models.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 列表查询参数
|
||||
/// </summary>
|
||||
public class PageParam
|
||||
{
|
||||
/// <summary>
|
||||
/// 页大小
|
||||
/// </summary>
|
||||
public int PageSize { get; set; }
|
||||
/// <summary>
|
||||
/// 页索引
|
||||
/// </summary>
|
||||
public int PageIndex { get; set; }
|
||||
/// <summary>
|
||||
/// 搜索字符串
|
||||
/// </summary>
|
||||
public string? QueryString { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user