houzhongjian
8 天以前 3058865fa4dfa634a92b4ebd826d8b1264dc90a3
提交 | 用户 | 时间
ead005 1 package com.iailab.module.model.api.mcs.dto;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import java.io.Serializable;
7 import java.util.List;
8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年11月14日
13  */
14 @Schema(description = "RPC 模型 - 预测数据 DTO")
15 @Data
16 public class PreDataSampleViewRespDTO implements Serializable {
17     private static final long serialVersionUID = 1L;
18
19     @Schema(description = "真实值")
20     private List<Object[]> realData;
21
22     @Schema(description = "T+N预测值,N表示预测频率")
23     private List<Object[]> preDataN;
4af6b1 24
D 25     @Schema(description = "累计真实值")
26     private List<Object[]> cumulantRealData;
27
28     @Schema(description = "累计预测值")
29     private List<Object[]> cumulantPreData;
67f59a 30
D 31     @Schema(description = "调整预测值")
32     private List<Object[]> adjData;
ead005 33 }