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