This commit is contained in:
2023-11-09 15:17:39 +08:00
parent da2e3ac4b4
commit edc4075ebe

View File

@@ -158,6 +158,12 @@ public class OrderListVO {
@Excel(name = "充电时长") @Excel(name = "充电时长")
private String chargingTime; private String chargingTime;
/**
* 充电度数
*/
@Excel(name = "充电度数")
private String chargingDegree;
/** /**
* 支付金额 * 支付金额
*/ */
@@ -170,6 +176,18 @@ public class OrderListVO {
@Excel(name = "订单金额") @Excel(name = "订单金额")
private String orderAmount; private String orderAmount;
/**
* 电费金额
*/
@Excel(name = "电费")
private BigDecimal totalElectricityAmount;
/**
* 服务费金额
*/
@Excel(name = "服务费")
private BigDecimal totalServiceAmount;
/** /**
* 虚拟金额 * 虚拟金额
*/ */
@@ -200,12 +218,6 @@ public class OrderListVO {
@Excel(name = "创建日期") @Excel(name = "创建日期")
private String createTime; private String createTime;
/**
* 充电度数
*/
@Excel(name = "充电度数")
private String chargingDegree;
/** /**
* 微信商户单号 * 微信商户单号
*/ */
@@ -217,18 +229,6 @@ public class OrderListVO {
*/ */
private String paymentInstitutions; private String paymentInstitutions;
/**
* 电费金额
*/
@Excel(name = "电费")
private BigDecimal totalElectricityAmount;
/**
* 服务费金额
*/
@Excel(name = "服务费")
private BigDecimal totalServiceAmount;
/** /**
* 实时消费金额 * 实时消费金额
*/ */