Uat_Study
hang 2022-04-29 15:58:41 +08:00
parent c91d9517d9
commit 7cc48b9342
2 changed files with 1 additions and 2 deletions

View File

@ -52,7 +52,6 @@ namespace IRaCIS.Core.Application.Contracts
[NotDefault]
public Guid TrialId { get; set; }
//public Guid? SignId { get; set; }
public Guid[] SubjectVisitIds { get; set; }=new Guid[0];
}

View File

@ -1260,7 +1260,7 @@ namespace IRaCIS.Core.Application.Image.QA
[HttpGet("{subjectVisitId:guid}")]
[HttpPost]
public async Task<IResponseOutput> VerifyCRCRequestToQC(CRCRequestToQCCommand cRCRequestToQCCommand)
{
var dbSubjectVisitList = await _subjectVisitRepository.Where(t => cRCRequestToQCCommand.SubjectVisitIds.Contains(t.Id), true).ToListAsync();