| | |
| | | private String itemName; |
| | | |
| | | @Schema(description = "预测时间") |
| | | // @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String predictTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date predictTime; |
| | | |
| | | @Schema(description = "当时预测值") |
| | | private List<Object[]> curData; |
| | |
| | | private List<Object[]> realData; |
| | | |
| | | @Schema(description = "T+L预测值") |
| | | private List<Object[]> preDataL; |
| | | |
| | | @Schema(description = "T+N预测值") |
| | | private List<Object[]> preDataN; |
| | | |
| | | @Schema(description = "累计真实值") |
| | | private List<Object[]> cumulantRealData; |
| | | |
| | | @Schema(description = "累计预测值") |
| | | private List<Object[]> cumulantPreData; |
| | | |
| | | @Schema(description = "类型") |
| | | private Integer lineType; |
| | | } |