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; } }