zhangf
2024-08-08 71706ced3375f4c18148516d0477d8fd645de2ee
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.gkhy.huataiFourierSpecialGasMonitor.entity.resp;
 
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/9/1 10:14
 */
@Data
public class GasWarnLogInfoByTimeRespDTO implements Serializable {
 
    private Long id;
 
    private LocalDateTime warnTime;
 
    private Integer gasCategoryId;
 
    private String gasMolecularFormula;
 
    private String gasName;
 
    private String gasUnit;
 
    private Double gasConcentrationThreshold;
 
    private Double gasConcentration;
 
    private Integer gasThresholdId;
 
    private String gasThresholdName;
}