From ed60df6634e717bff18c84ca9656a9fa97557d94 Mon Sep 17 00:00:00 2001 From: “wangming” <“wangming@antissoft.com”> Date: Thu, 30 Oct 2025 12:40:34 +0800 Subject: [PATCH] refactor: 代码优化和清理 --- netcore/src/Modularity/Extend/NCC.Extend/LqCardTransferLogService.cs | 2 +- netcore/src/Modularity/Extend/NCC.Extend/LqGzService.cs | 5 ----- netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/netcore/src/Modularity/Extend/NCC.Extend/LqCardTransferLogService.cs b/netcore/src/Modularity/Extend/NCC.Extend/LqCardTransferLogService.cs index ac0f8d4..0b4f4f7 100644 --- a/netcore/src/Modularity/Extend/NCC.Extend/LqCardTransferLogService.cs +++ b/netcore/src/Modularity/Extend/NCC.Extend/LqCardTransferLogService.cs @@ -18,7 +18,7 @@ namespace NCC.Extend.LqCardTransferLog /// /// 转卡日志服务 /// - [ApiDescriptionSettings(Tag = "绿纤转卡日志服务", Name = "LqCardTransferLog", Order = 100)] + [ApiDescriptionSettings(Tag = "绿纤转卡日志服务", Name = "LqCardTransferLog", Order = 200)] [Route("api/Extend/[controller]")] public class LqCardTransferLogService : IDynamicApiController, ILqCardTransferLogService, ITransient { diff --git a/netcore/src/Modularity/Extend/NCC.Extend/LqGzService.cs b/netcore/src/Modularity/Extend/NCC.Extend/LqGzService.cs index 191c9fd..a1f2419 100644 --- a/netcore/src/Modularity/Extend/NCC.Extend/LqGzService.cs +++ b/netcore/src/Modularity/Extend/NCC.Extend/LqGzService.cs @@ -913,10 +913,5 @@ namespace NCC.Extend.LqGz } #endregion - - - - - } } diff --git a/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs b/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs index 90f05d1..97ac2e7 100644 --- a/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs +++ b/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs @@ -2586,7 +2586,7 @@ namespace NCC.Extend.LqStatistics LEFT JOIN ( SELECT hytk.md as F_StoreId, - COALESCE(SUM(hytk.tkje), 0) as F_RefundAmount, + COALESCE(SUM(hytk.F_ActualRefundAmount), 0) as F_RefundAmount, COUNT(DISTINCT hytk.F_Id) as F_RefundCount FROM lq_hytk_hytk hytk WHERE hytk.F_IsEffective = 1 -- libgit2 0.21.4