燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-01 99042da077ad98e38340f96cb03ffcf4d249ab87
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
package com.yssh.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
@ToString
@ApiModel(value="预测分析展示对象", description="预测分析展示对象")
@Data
public class ForecastAnalyseVo {
    public ForecastAnalyseVo() {
    }
 
    public ForecastAnalyseVo(Double forecastValue, Double practicalValue, Long time) {
        this.forecastValue = forecastValue;
        this.practicalValue = practicalValue;
        this.time = time;
    }
 
    @ApiModelProperty(value = "预测值")
    private Double forecastValue;
    @ApiModelProperty(value = "实际值")
    private Double practicalValue;
    @ApiModelProperty(value = "时间")
    private Long time;
 
    public Double getForecastValue() {
        return forecastValue;
    }
 
    public void setForecastValue(Double forecastValue) {
        this.forecastValue = forecastValue;
    }
 
    public Double getPracticalValue() {
        return practicalValue;
    }
 
    public void setPracticalValue(Double practicalValue) {
        this.practicalValue = practicalValue;
    }
 
    public Long getTime() {
        return time;
    }
 
    public void setTime(Long time) {
        this.time = time;
    }
}