This commit is contained in:
zpc 2025-10-10 17:02:36 +08:00
parent b17275787c
commit 9fd93f0aa9

View File

@ -63,9 +63,9 @@ public class SQReservationJob
//Console.WriteLine("[SQReservationJob] 步骤2将开始时间已到且未结束的预约置为进行中2");
//// 2) 将开始时间已到且未结束的预约置为进行中2
//var startedList = await _reservationsServices.QueryListByClauseAsync(
// r => r.status == 1 && r.start_time <= now && r.end_time > now,
// r => r.status == 1 && r.end_time > now,
// r => r.id, OrderByType.Asc);
//Console.WriteLine($"[SQReservationJob] 步骤2查询到待置为进行中记录数量 = {startedList?.Count ?? 0}");
//Console.WriteLine($"[SQReservationJob] 步骤2已结束未签到人数 = {startedList?.Count ?? 0}");
//if (startedList != null && startedList.Count > 0)
//{
// var changedCount = 0;