package com.gkhy.testFourierSpecialGasMonitor.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;
|
}
|