From 92f116a835c418182386d22d00f7230168ab2bf3 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期二, 25 三月 2025 15:13:36 +0800 Subject: [PATCH] fix:统计 --- LifePayment/LifePayment.Application/LifePay/StatisticsService.cs | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs b/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs index b13c9ac..86e868f 100644 --- a/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs +++ b/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs @@ -56,6 +56,7 @@ CreationTime = DateTime.Now, Amount = 0, AccumulatedReceipts = accumulatedReceipts, + AccumulatedIncome = accumulatedIncome, ReceiptsYesterday = receiptsYesterday, AccumulatedOrders = accumulatedOrders, OrdersNumYesterday = ordersNumYesterday, @@ -70,13 +71,14 @@ { Amount = entity.Amount, AccumulatedReceipts = entity.AccumulatedReceipts, + AccumulatedIncome = entity.AccumulatedIncome, ReceiptsYesterday = entity.ReceiptsYesterday, AccumulatedOrders = entity.AccumulatedOrders, OrdersNumYesterday = entity.OrdersNumYesterday, YesterdaySuccess = entity.YesterdaySuccess, YesterdayFail = entity.YesterdayFail, AccumulatedUsers = entity.AccumulatedUsers, - YesterdayActiveUsers = entity.AccumulatedUsers, + YesterdayActiveUsers = entity.YesterdayActiveUsers, }; return topStatisticsOutput; } -- Gitblit v1.9.1