鞍钢鲅鱼圈能源管控系统后端代码
liriming
6 天以前 e3b86d096f5fef3adb42dec3f9803de9f1840cf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.iailab.module.ansteel.api.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年08月26日
 */
@Schema(description = "RPC 模型 - 预测数据 DTO")
@Data
public class PreDataViewDTO 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 = "输出结果")
    private String resultstr;
 
    @Schema(description = "输出结果")
    private String resultName;
 
    @Schema(description = "预测时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date predictTime;
 
    @Schema(description = "量程上限")
    private BigDecimal rangeH;
 
    @Schema(description = "量程下限")
    private BigDecimal rangeL;
 
    @Schema(description = "运行上限")
    private BigDecimal limitH;
 
    @Schema(description = "运行下限")
    private BigDecimal limitL;
 
    @Schema(description = "动态上限")
    private List<Object[]> trendsDataH;
 
    @Schema(description = "动态下限")
    private List<Object[]> trendsDataL;
 
    @Schema(description = "当前")
    private BigDecimal currValue;
 
    @Schema(description = "预测最大值")
    private BigDecimal preMax;
 
    @Schema(description = "预测最小值")
    private BigDecimal preMin;
 
    @Schema(description = "预测最后一个值")
    private BigDecimal preLast;
 
    @Schema(description = "预测累计值")
    private BigDecimal preCumulant;
 
    @Schema(description = "当时预测值")
    private List<Object[]> curData;
 
    @Schema(description = "真实值")
    private List<Object[]> realData;
 
    @Schema(description = "历史预测值")
    private List<Object[]> preData;
 
}