大屏添加查询值

This commit is contained in:
2026-04-21 14:07:33 +08:00
parent 41cd594c13
commit 5234c39b9c
4 changed files with 50 additions and 1 deletions

View File

@ -23,6 +23,9 @@ public class AnnualOverviewResp {
@ApiModelProperty(value = "电站总数")
Integer stationNumber;
@ApiModelProperty(value = "在建-电站总数")
Integer underStationNumber;
//年总放(日冻结表计算)
@ApiModelProperty(value = "年总放")
BigDecimal yearDischarge;
@ -45,6 +48,10 @@ public class AnnualOverviewResp {
@ApiModelProperty(value = "年度收益总额")
BigDecimal yearProfit;
//月度收益总额
@ApiModelProperty(value = "月度收益总额")
BigDecimal monthDayProfit;
//日充 yearCharge日放yearDischarge 总放 总充
//年总放(日冻结表计算)
@ -63,6 +70,9 @@ public class AnnualOverviewResp {
@ApiModelProperty(value = "总充")
BigDecimal totalCharge;
@ApiModelProperty(value = "转换效率")
BigDecimal systemEfficiency;
//各站收益
List<Subdata> list =new ArrayList<>();

View File

@ -28,6 +28,10 @@ public class EnergySavingRespVo {
@ApiModelProperty(value = "等效经济收入")
BigDecimal income;
@ApiModelProperty(value = "等效绿证(张)")
BigDecimal greenNum;
}