导出订单列表文件,新增结算时间字段

This commit is contained in:
2023-08-05 14:00:41 +08:00
parent 385c2c9781
commit a32daacfc4
2 changed files with 7 additions and 0 deletions

View File

@@ -176,6 +176,12 @@ public class OrderListVO {
@Excel(name = "结算金额")
private String settleAmount;
/**
* 结算时间
*/
@Excel(name = "结算时间")
private String settlementTime;
/**
* 创建日期
*/

View File

@@ -180,6 +180,7 @@
t1.order_amount as orderAmount,
t1.virtual_amount as virtualAmount,
t1.settle_amount as settleAmount,
t1.settlement_time as settlementTime,
t1.start_soc as startSoc,
t1.end_soc as endSoc,
t1.charge_start_time as chargeStartTime,