21 lines
404 B
C#
Raw Permalink Normal View History

2025-01-16 15:07:38 +08:00
using System.ComponentModel.DataAnnotations;
namespace YD_XinWei.Commons.Dto
{
/// <summary>
/// 分页
/// </summary>
public class PageDto
{
/// <summary>
/// 页码
/// </summary>
2025-02-25 15:32:58 +08:00
public int PageNo { get; set; } = 1;
2025-01-16 15:07:38 +08:00
/// <summary>
/// 每页行数
/// </summary>
2025-02-25 15:32:58 +08:00
public int PageSize { get; set; } = 1000;
2025-01-16 15:07:38 +08:00
}
}