yanjinhui
2025-04-01 8ea14f10bfd3ed7a6b445d53feeb399b6bcf5d78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Telescopic
{
    public class PaginationDTO
    {
        /// <summary>
        /// 第几页
        /// </summary>
        public int pageIndex { get; set; }
 
        /// <summary>
        /// 一页多少个数据
        /// </summary>
        public int pageSize { get; set; }
 
        /// <summary>
        /// 模糊查询的字段
        /// </summary>
        public string? searchKeyword { get; set; }
 
        /// <summary>
        /// 开始时间
        /// </summary>
        public DateTime ?startDate { get; set; }
 
 
        /// <summary>
        /// 结束时间
        /// </summary>
        public DateTime? endDate { get; set; }
 
  
 
 
    }
}