From d660ae873c01ad7d8531f2ac39d9b5872bc0716e Mon Sep 17 00:00:00 2001 From: shanji <18996038927@163.com> Date: Mon, 8 Jan 2024 01:44:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=B0=83=E9=87=8F=E6=97=B6?= =?UTF-8?q?=E5=90=8C=E6=97=B6=E6=9B=B4=E6=96=B0=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BBWY.Server.Business/PlatformSDK/APIExecutionTimesRecorder.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BBWY.Server.Business/PlatformSDK/APIExecutionTimesRecorder.cs b/BBWY.Server.Business/PlatformSDK/APIExecutionTimesRecorder.cs index bb3df73d..2b8e1bce 100644 --- a/BBWY.Server.Business/PlatformSDK/APIExecutionTimesRecorder.cs +++ b/BBWY.Server.Business/PlatformSDK/APIExecutionTimesRecorder.cs @@ -47,6 +47,7 @@ namespace BBWY.Server.Business var updateList = currentRoundList.Where(x => dbList.Any(y => y.Api == x.Api)) .Select(x => fsql.Update() .Set(a => a.Count + x.Count) + .Set(a => a.UpdateTime, DateTime.Now) .Where(a => a.Api == x.Api && a.Date == today)) .ToList();