package com.gkhy.testFourierSpecialGasMonitor.entity.query;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/8/9 16:49
|
*/
|
@Data
|
public class FindGasWarnLogPageQuery {
|
|
private LocalDateTime startTime;
|
|
private LocalDateTime endTime;
|
|
private Integer gasCategoryId;
|
|
private Byte status;
|
|
private Long gasThresholdId;
|
}
|