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();