| | |
| | | public class PreDataViewSimpleDTO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "预测项ID") |
| | | private String itemId; |
| | | |
| | | @Schema(description = "预测项名称") |
| | | private String itemName; |
| | | |
| | | @Schema(description = "输出ID") |
| | | private String outId; |
| | | |
| | | @Schema(description = "预测时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | |
| | | @Schema(description = "真实值") |
| | | private List<Object[]> realData; |
| | | |
| | | @Schema(description = "历史预测值") |
| | | private List<Object[]> preData; |
| | | @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; |
| | | } |