From ebe597a5752bdbc2449ed9b5e7319ad9a0e2b800 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Fri, 1 Nov 2024 11:09:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8A=A0=E6=80=A5=E9=98=85?= =?UTF-8?q?=E7=89=8710=E5=88=86=E9=92=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Helper/HangfireJobHelper.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/IRaCIS.Core.Application/Helper/HangfireJobHelper.cs b/IRaCIS.Core.Application/Helper/HangfireJobHelper.cs index 8a78167df..2c0f22281 100644 --- a/IRaCIS.Core.Application/Helper/HangfireJobHelper.cs +++ b/IRaCIS.Core.Application/Helper/HangfireJobHelper.cs @@ -73,6 +73,12 @@ namespace IRaCIS.Core.Application.Helper case EmailBusinessScenario.QCToCRCImageQuestion: HangfireJobHelper.AddOrUpdateCronJob(jobId, t => t.Send(new QCImageQuestionRecurringEvent() { TrialId = trialId }, default), emailCron); break; + //加急阅片 10分钟 + case EmailBusinessScenario.ExpeditedReading: + HangfireJobHelper.AddOrUpdateCronJob(jobId, t => t.Send(new UrgentIRUnReadTaskRecurringEvent() { TrialId = trialId }, default), emailCron); + break; + + default: break; }