首页订单数据新增汇总字段

This commit is contained in:
Lemon
2025-01-08 09:15:56 +08:00
parent 351e03d4e8
commit 82e1f4a1c8
3 changed files with 29 additions and 1 deletions

View File

@@ -35,19 +35,39 @@ public class IndexOrderInfoVO {
*/
private String totalSharpUsedElectricity;
/**
* 尖时段总金额
*/
private String totalSharpAmount;
/**
* 峰时段总用电量
*/
private String totalPeakUsedElectricity;
/**
* 峰时段总金额
*/
private String totalPeakAmount;
/**
* 平时段总用电量
*/
private String totalFlatUsedElectricity;
/**
* 平时段总金额
*/
private String totalFlatAmount;
/**
* 谷时段总用电量
*/
private String totalValleyUsedElectricity;
/**
* 谷时段总金额
*/
private String totalValleyAmount;
}