lixiaojun
2024-09-09 c0f3c3f170846197d8d3f74ac123e0ac93a6dd67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace IStation.Application.SZJT
{
    /// <summary>
    /// 
    /// </summary>
    public class BelongOfTimeRangePageInput : BelongOfTimeRangeInput
    {
        /// <summary>
        /// 页面索引
        /// </summary>
        [Required, Range(1, int.MaxValue, ErrorMessage = "PageIndex 必须大于0")]
        public int PageIndex { get; set; }
 
        /// <summary>
        /// 页面尺寸
        /// </summary>
        [Required, Range(1, int.MaxValue, ErrorMessage = "PageSize 必须大于0")]
        public int PageSize { get; set; }
    }
}