From e024da7f1a70e732c56d1ef008831829bcf387c5 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期二, 25 三月 2025 09:20:24 +0800
Subject: [PATCH] fix;导出文件bug修复
---
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs | 3 +++
LifePayment/LifePayment.Application/LifePay/LifePayService.cs | 3 ++-
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
index 42dcbb0..bce743f 100644
--- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
+++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -461,6 +461,9 @@
public string? RefundOrderNo { get; set; }
+ [Name("閫�娆剧敵璇�")]
+ public string? RefundApplyRemark { get; set; }
+
[Name("鍏呭�奸噾棰�")]
public string? RechargeAmountStr { get; set; }
diff --git a/LifePayment/LifePayment.Application/LifePay/LifePayService.cs b/LifePayment/LifePayment.Application/LifePay/LifePayService.cs
index 2abfec6..0d14bf2 100644
--- a/LifePayment/LifePayment.Application/LifePay/LifePayService.cs
+++ b/LifePayment/LifePayment.Application/LifePay/LifePayService.cs
@@ -358,7 +358,7 @@
{
var result = await (await GetLifePayRefundOrderListFilter(input)).Select(x => new LifePayRefundOrderListTemplate
{
- FinishTime = x.FinishTime,
+ FinishTime = x.RefundTime,
RefundPrice = x.RefundPrice,
LifePayOrderType = x.LifePayOrderType,
LifePayType = x.LifePayType,
@@ -368,6 +368,7 @@
ChannelName = x.ChannelName,
CreationTime = x.CreationTime,
ACOOLYStatus = x.ACOOLYStatus,
+ RefundApplyRemark = x.RefundApplyRemark,
RechargeAmount = x.RechargeAmount,
ActualReceivedAmount = x.ActualReceivedAmount.ToString("F2"),
LifePayRefundStatus = x.LifePayRefundStatus,
--
Gitblit v1.9.1