update 后管订单列表新增字段

This commit is contained in:
2023-05-24 11:19:16 +08:00
parent dd3692ce1b
commit 5f08a316b6
2 changed files with 14 additions and 0 deletions

View File

@@ -150,6 +150,18 @@ public class OrderListVO {
@Excel(name = "订单金额")
private String orderAmount;
/**
* 虚拟金额
*/
@Excel(name = "虚拟金额")
private String virtualAmount;
/**
* 结算金额
*/
@Excel(name = "结算金额")
private String settleAmount;
/**
* 创建日期
*/

View File

@@ -171,6 +171,8 @@
t1.pay_status as payStatus,
t1.pay_amount as payAmount,
t1.order_amount as orderAmount,
t1.virtual_amount as virtualAmount,
t1.settle_amount as settleAmount,
t1.start_soc as startSoc,
t1.end_soc as endSoc,
t1.charge_start_time as chargeStartTime,