This commit is contained in:
zpc 2025-09-26 20:47:57 +08:00
parent fcb057ee5f
commit 84e58d48e1

View File

@ -69,7 +69,7 @@ namespace CoreCms.Net.Task
// 预约状态处理(每分钟执行一次) // 预约状态处理(每分钟执行一次)
RecurringJob.AddOrUpdate<SQReservationJob>(s => s.Execute(), "0 0/1 * * * ? ", TimeZoneInfo.Local); RecurringJob.AddOrUpdate<SQReservationJob>(s => s.Execute(), "0 0/1 * * * ? ", TimeZoneInfo.Local);
// 预约退款处理 // 预约退款处理
//RecurringJob.AddOrUpdate<SQReservationRefundJob>(s => s.Execute(), "0 0/1 * * * ? ", TimeZoneInfo.Local); RecurringJob.AddOrUpdate<SQReservationRefundJob>(s => s.Execute(), "0 0/1 * * * ? ", TimeZoneInfo.Local);
} }