2025-02-25 15:32:58 +08:00

21 lines
404 B
C#

using System.ComponentModel.DataAnnotations;
namespace YD_XinWei.Commons.Dto
{
/// <summary>
/// 分页
/// </summary>
public class PageDto
{
/// <summary>
/// 页码
/// </summary>
public int PageNo { get; set; } = 1;
/// <summary>
/// 每页行数
/// </summary>
public int PageSize { get; set; } = 1000;
}
}