| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | @Schema(description = "数据名称") |
| | | private String dataName; |
| | | |
| | | @Schema(description = "调度时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date scheduleTime; |
| | | |
| | | @Schema(description = "开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date startTime; |
| | |
| | | @Schema(description = "数据列表") |
| | | List<Object[]> dataList; |
| | | |
| | | @Schema(description = "上限") |
| | | private BigDecimal limitH; |
| | | |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | |
| | | @Schema(description = "越界时间") |
| | | private List<String> overLimitTimes; |
| | | |
| | | @Schema(description = "建议状态(0未处理 1已采纳 2已忽略)") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "建议处理时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date handleTime; |
| | | |
| | | } |