支付时间

This commit is contained in:
Guoqs
2024-09-09 15:19:43 +08:00
parent 209354e5ac
commit 274b2695b4
3 changed files with 3 additions and 2 deletions

View File

@@ -488,7 +488,7 @@ public class OrderService {
} }
// 支付流水对应页面支付信息 // 支付流水对应页面支付信息
List<OrderDetailInfoVO.PayRecord> payRecords = orderPayRecordService.selectOrderPayInfoList(orderCode); // List<OrderDetailInfoVO.PayRecord> payRecords = orderPayRecordService.selectOrderPayInfoList(orderCode);
List<OrderPayRecordVO> payRecordList = orderPayRecordService.selectOrderPayRecordList(orderCode); List<OrderPayRecordVO> payRecordList = orderPayRecordService.selectOrderPayRecordList(orderCode);
vo.setPayRecordList(payRecordList); vo.setPayRecordList(payRecordList);

View File

@@ -14,6 +14,7 @@ public class OrderPayRecordVO {
private String outTradeNo; // 微信商户订单号 real_time_monitor_data private String outTradeNo; // 微信商户订单号 real_time_monitor_data
private String transactionId; // 微信支付订单号 private String transactionId; // 微信支付订单号
private String refundAmount; // 退款金额 private String refundAmount; // 退款金额
private String refundTime; // 退款时间
private String payChannel; // 汇付定义的支付渠道 private String payChannel; // 汇付定义的支付渠道
private String payChannelDesc; // 支付渠道描述 private String payChannelDesc; // 支付渠道描述

View File

@@ -436,7 +436,7 @@
t1.order_code as orderCode, t1.order_code as orderCode,
t1.pay_amount as payAmount, t1.pay_amount as payAmount,
t1.pay_mode as payMode, t1.pay_mode as payMode,
ifnull(t2.create_time, t1.create_time) as payTime, least(t2.create_time, t1.create_time) as payTime,
t1.acquirer as acquirer, t1.acquirer as acquirer,
t1.deduction_record as deductionRecord, t1.deduction_record as deductionRecord,
t1.refund_amount as refundAmount, t1.refund_amount as refundAmount,