25 lines
651 B
C#
25 lines
651 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace YD_XinWei.Commons.Dto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 分页
|
|||
|
/// </summary>
|
|||
|
public class PageDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 页码
|
|||
|
/// </summary>
|
|||
|
[Required(ErrorMessage = "页码参数不能为空")]
|
|||
|
[Range(1, int.MaxValue, ErrorMessage = "参数必须大于0")]
|
|||
|
public int PageNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 每页行数
|
|||
|
/// </summary>
|
|||
|
[Required(ErrorMessage = "行数不能为空")]
|
|||
|
[Range(1, int.MaxValue, ErrorMessage = "参数必须大于0")]
|
|||
|
public int PageSize { get; set; }
|
|||
|
}
|
|||
|
}
|