This commit is contained in:
YAS\29473
2025-09-27 13:46:26 +08:00
parent 79e057703f
commit 79bd34d9f6
5 changed files with 102 additions and 42 deletions

View File

@@ -2,6 +2,7 @@ package com.jsowell.pile.vo.web;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@@ -15,6 +16,8 @@ public class OrderCountByTimeVO {
private List<OrderCountByTimeListVO> orderCountByTimeList;
private BigDecimal totalInsuranceAmount;
@Data
public static class OrderCountByTimeListVO {
@@ -31,6 +34,10 @@ public class OrderCountByTimeVO {
private String startTime;
private String endTime;
private Integer count ;
// 保险金额
private BigDecimal insuranceAmount;
}

View File

@@ -291,4 +291,9 @@ public class OrderListVO {
* 实时充电度数
*/
private String realTimeChargingDegree;
/**
* 保险金额
*/
private BigDecimal insuranceAmount;
}