| 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 EnergyModelDataVO electricityQuantity; | 
|   | 
|   | 
|     @ApiModelProperty(value = "上月用水 单位 t 总量、同比、环比 ") | 
|     private EnergyModelDataVO waterQuantity; | 
|   | 
|   | 
|     @ApiModelProperty(value = "上月用气 单位 总量、同比、环比 ") | 
|     private EnergyModelDataVO gasQuantity; | 
|   | 
|     @ApiModelProperty(value = "今日用电 单位 kw·h,总量、同比、环比") | 
|     private EnergyModelDataVO todayElectricity; | 
|   | 
|     @ApiModelProperty(value = "本月用电 单位 kw·h 总量、同比、环比") | 
|     private EnergyModelDataVO monthElectricity; | 
|   | 
|     @ApiModelProperty(value = "昨日用电 单位 kw·h 总量、同比、环比") | 
|     private EnergyModelDataVO yesterdayElectricity; | 
|   | 
| } |