zhanghua
2023-02-28 e0ef31b5727c28af2813ff184647ed366cd2cca2
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
package com.ycl.smoke.remote.dto;
 
import com.baomidou.mybatisplus.annotation.OrderBy;
import lombok.Builder;
import lombok.Data;
 
@Data
@Builder
public class DetectorDailyParamDto {
    /**
     * 状态[1:正常,2:超标,3:正常离线,4异常离]
     */
    private Integer Status;
    /**
     * 数据获取日期
     */
    private String AcquitDate;
    /**
     * 排序字段
     */
    private String OrderBy;
    /**
     * 页序号
     */
    private Integer Page;
    /**
     * 每页记录数
     */
    private Integer Perpage;
    /**
     * 检查是否安装有设备
     */
    private Boolean LocaleWithDevice;
 
}