liulin
2024-07-31 72514fab70f067c15a167a96923b678eea3c8bfd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.lunhan.xxx.entity.dto;
 
import java.util.List;
 
/**
 * 分页查询基础 dto
 * @Author lin.liu
 * @Description 分页查询基础 dto
 * @Date 2021/4/7
 **/
public class SearchBasicDTO extends PagerBasicDTO {
    /**
     * 关键字
     */
    private String keywords;
    /**
     * 自增id列表
     */
    private List<Long> listId;
    /**
     * 数据状态 EState
     */
    private Integer status;
    /**
     * 数据状态列表
     */
    private List<Integer> listStatus;
    /**
     * 数据创建时间-范围(eg: 2021-01-01 00:00:00 ~ 2021-01-01 23:59:59)"
     */
    private String createTimeRange;
    /**
     * 数据创建时间-起始
     * @ignore
     */
    private Long createTimeStart;
    /**
     * 数据创建时间-截止
     * @ignore
     */
    private Long createTimeEnd;
    /**
     * 上次请求最后一条数据的id
     */
    private Long lastId;
    /**
     * 排序列表
     */
    private List<OrderByDTO> orderBy;
 
    public String getKeywords() {
        return keywords;
    }
 
    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }
 
    public List<Long> getListId() {
        return listId;
    }
 
    public void setListId(List<Long> listId) {
        this.listId = listId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public List<Integer> getListStatus() {
        return listStatus;
    }
 
    public void setListStatus(List<Integer> listStatus) {
        this.listStatus = listStatus;
    }
 
    public String getCreateTimeRange() {
        return createTimeRange;
    }
 
    public void setCreateTimeRange(String createTimeRange) {
        this.createTimeRange = createTimeRange;
    }
 
    public Long getCreateTimeStart() {
        return createTimeStart;
    }
 
    public void setCreateTimeStart(Long createTimeStart) {
        this.createTimeStart = createTimeStart;
    }
 
    public Long getCreateTimeEnd() {
        return createTimeEnd;
    }
 
    public void setCreateTimeEnd(Long createTimeEnd) {
        this.createTimeEnd = createTimeEnd;
    }
 
    public Long getLastId() {
        return lastId;
    }
 
    public void setLastId(Long lastId) {
        this.lastId = lastId;
    }
 
    public List<OrderByDTO> getOrderBy() {
        return orderBy;
    }
 
    public void setOrderBy(List<OrderByDTO> orderBy) {
        this.orderBy = orderBy;
    }
 
    @Override
    public String toString() {
        return "SearchBasicDTO{" +
                "keywords='" + keywords + '\'' +
                ", listId=" + listId +
                ", status=" + status +
                ", listStatus=" + listStatus +
                ", createTimeRange='" + createTimeRange + '\'' +
                ", createTimeStart=" + createTimeStart +
                ", createTimeEnd=" + createTimeEnd +
                ", lastId=" + lastId +
                ", orderBy='" + orderBy + '\'' +
                '}';
    }
}