xiangpei
2024-08-16 9d30f3aba92b1fe90eaecd486113f544f0f18b7c
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
package com.ycl.platform.domain.query;
 
import com.ycl.platform.base.AbsQuery;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 数据中心查询
 *
 * @author:xp
 * @date:2024/7/31 17:06
 */
@Data
public class DataCenterQuery extends AbsQuery {
 
    /** 开始时间 */
    private Date startTime;
 
    /** 结束时间 */
    private Date endTime;
 
    /** 关键词 */
    private String keyword;
 
    /** 动态列的表明条件 */
    private String tableName = "t_monitor";
}