鞍钢鲅鱼圈能源管控系统后端代码
liriming
2 天以前 2debc39d13bdce031221294b19750eea8ed53d49
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
package com.iailab.module.ansteel.api.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author dyk
 * @date 2025年04月21日
 */
@Data
public class PowerHistoryDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "x轴")
    private List<String> categories;
 
    @Schema(description = "图表数据")
    private List<Object[]> dataList;
 
    @Schema(description = "最大值")
    private BigDecimal max;
 
    @Schema(description = "最小值")
    private BigDecimal min;
 
    @Schema(description = "平均值")
    private BigDecimal avg;
 
    @Schema(description = "返送累计")
    private BigDecimal fsl;
 
    @Schema(description = "最大值发生时间")
    private String maxTime;
 
    @Schema(description = "最小值发生时间")
    private String minTime;
 
}