jiangping
2024-11-14 ca46aed30739be09fbbdb413ff7d2f843934efda
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.doumee.dao.web.response.platformReport;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 能耗看板
 *
 * @Author : Rk
 * @create 2024/10/25 13:53
 */
@Data
public class EnergyBoardVO {
 
 
    @ApiModelProperty(value = "本年度循环烟箱")
    private Integer smokeBoxTotal;
 
    @ApiModelProperty(value = "碳排放 单位 吨")
    private BigDecimal carbon;
 
    @ApiModelProperty(value = "上月用电 单位 kw·h")
    private Integer electricityQuantity;
 
    @ApiModelProperty(value = "用电环比")
    private BigDecimal electricityYear;
 
    @ApiModelProperty(value = "用电同比")
    private BigDecimal electricityMonth;
 
 
    @ApiModelProperty(value = "上月用水 单位 t")
    private BigDecimal waterQuantity;
 
    @ApiModelProperty(value = "用水环比")
    private BigDecimal waterYear;
 
    @ApiModelProperty(value = "用水同比")
    private BigDecimal waterMonth;
 
 
 
    @ApiModelProperty(value = "上月用气 单位 ")
    private BigDecimal gasQuantity;
 
    @ApiModelProperty(value = "用气环比")
    private BigDecimal gasYear;
 
    @ApiModelProperty(value = "用气同比")
    private BigDecimal gasMonth;
 
 
    @ApiModelProperty(value = "办公楼用电 单位 kw·h")
    private Integer officeQuantity;
 
    @ApiModelProperty(value = "成品库用电 单位 kw·h")
    private Integer productHouseQuantity;
 
    @ApiModelProperty(value = "联合工房用电 单位 kw·h")
    private Integer workHouseQuantity;
 
    @ApiModelProperty(value = "物流园区用电 单位 kw·h")
    private Integer parkQuantity;
 
    @ApiModelProperty(value = "动力站房用电 单位 kw·h")
    private Integer powerQuantity;
 
    @ApiModelProperty(value = "今日用电 单位 kw·h")
    private Integer todayElectricity;
 
    @ApiModelProperty(value = "本月用电 单位 kw·h")
    private Integer monthElectricity;
 
    @ApiModelProperty(value = "昨日用电 单位 kw·h")
    private Integer yesterdayElectricity;
 
    @ApiModelProperty(value = "实时负荷曲线",hidden = true)
    private List<EnergyDataVO> loadCurveList;
 
    @ApiModelProperty(value = "月能耗分析 - 水",hidden = true)
    private List<EnergyDataVO> energyDataWaterList;
 
    @ApiModelProperty(value = "月能耗分析 - 气",hidden = true)
    private List<EnergyDataVO> energyDataGasList;
 
    @ApiModelProperty(value = "月能耗分析 - 电",hidden = true)
    private List<EnergyDataVO> energyDataElectricityList;
 
    @ApiModelProperty(value = "月油耗分析",hidden = true)
    private List<EnergyDataVO> oilList;
 
    @ApiModelProperty(value = "上月油耗排行",hidden = true)
    private List<OilDataVO> lastMonthOilList;
}