xin
2025-04-15 8342e6a5ed78fc007c45609507f0a914c43fec4d
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
package com.oying.modules.maint.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.sql.Timestamp;
import java.util.List;
 
/**
* @author Z
* @date 2019-08-24
*/
@Data
public class DatabaseQueryCriteria{
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "数据源")
    private String jdbcUrl;
 
    @ApiModelProperty(value = "创建时间")
    private List<Timestamp> createTime;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
}