File was renamed from ycl-smoke/src/main/java/com/ycl/smoke/remote/dto/AlarmMsgParamDateDto.java |
| | |
| | | package com.ycl.smoke.remote.dto; |
| | | package com.ycl.smoke.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | @Data |
| | | @Builder |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class AlarmMsgParamDateDto { |
| | | |
| | | /** |
| | | * 查询创建报警日期 |
| | | */ |
| | | @JsonProperty("CreatedAt") |
| | | private String CreatedAt; |
| | | /** |
| | | * ExceedStandard超标,AbnormalOffline 异常离线 |
| | | */ |
| | | @JsonProperty("msg_type") |
| | | private String msg_type; |
| | | /** |
| | | * 起始时间戳 |
| | | */ |
| | | @JsonProperty("Begin") |
| | | private Long Begin; |
| | | /** |
| | | * 结束时间戳 |
| | | */ |
| | | @JsonProperty("End") |
| | | private Long End; |
| | | /** |
| | | * 设备编码 |
| | | */ |
| | | @JsonProperty("mn") |
| | | private String mn; |
| | | |
| | | } |