New file |
| | |
| | | package com.ruoyi.other.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | public class EmissionReductionVO { |
| | | @ApiModelProperty("累计光伏发电二氧化碳减排量(吨)") |
| | | private BigDecimal photovoltaic = new BigDecimal("1.39"); |
| | | @ApiModelProperty("累计光伏发电二氧化碳减排量(占比率)") |
| | | private BigDecimal photovoltaicRate ; |
| | | |
| | | @ApiModelProperty("累计储能二氧化碳减排量(吨)") |
| | | private BigDecimal energyStorage ; |
| | | @ApiModelProperty("累计储能二氧化碳减排量(占比率)") |
| | | private BigDecimal energyStorageRate ; |
| | | |
| | | @ApiModelProperty("累计充电二氧化碳减排量(吨)") |
| | | private BigDecimal charge; |
| | | @ApiModelProperty("累计充电二氧化碳减排量(占比率)") |
| | | private BigDecimal chargeRate ; |
| | | |
| | | @ApiModelProperty("总计二氧化碳减排量(吨)") |
| | | private BigDecimal total ; |
| | | } |