From 76be637e5024671c5e52073d410855396f56a7b5 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 26 Apr 2022 10:34:24 +0800 Subject: [PATCH] =?UTF-8?q?qc=E5=88=97=E8=A1=A8=E8=BF=94=E5=9B=9E=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/QC/TrialQCQuestionService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/QC/TrialQCQuestionService.cs b/IRaCIS.Core.Application/Service/QC/TrialQCQuestionService.cs index d21c0022..dc75eb9b 100644 --- a/IRaCIS.Core.Application/Service/QC/TrialQCQuestionService.cs +++ b/IRaCIS.Core.Application/Service/QC/TrialQCQuestionService.cs @@ -36,7 +36,7 @@ namespace IRaCIS.Core.Application.Contracts var list = await trialQCQuestionQueryable.OrderBy(t => t.ShowOrder).ToListAsync(); var signInfo = await _repository.Where(t => t.Id == queryTrialQCQuestionConfigure.TrialId) - .Select(trial => new { trial.QCQuestionConfirmedTime, trial.QCQuestionConfirmedUserId, RealName = trial.QCQuestionConfirmedUser.LastName + " / " + trial.QCQuestionConfirmedUser.FirstName, trial.QCQuestionConfirmedUser.UserName }).FirstOrDefaultAsync(); + .Select(trial => new {trial.QCProcessEnum, trial.QCQuestionConfirmedTime, trial.QCQuestionConfirmedUserId, RealName = trial.QCQuestionConfirmedUser.LastName + " / " + trial.QCQuestionConfirmedUser.FirstName, trial.QCQuestionConfirmedUser.UserName }).FirstOrDefaultAsync(); return (list, signInfo!); }