IRC_NewDev
he 2024-04-12 16:36:34 +08:00
parent 2a51de03b7
commit ae8f50dc14
2 changed files with 3 additions and 1 deletions

View File

@ -83,7 +83,7 @@ namespace IRaCIS.Application.Services
{ {
var existsQuery = _readingClinicalDataRepository var existsQuery = _readingClinicalDataRepository
.WhereIf(indto.Id != null, x => x.Id != indto.Id) .WhereIf(indto.Id != null, x => x.Id != indto.Id)
.Where(x => x.ClinicalDataTrialSetId == indto.ClinicalDataTrialSetId && x.ReadingId == indto.ReadingId); .Where(x => x.ClinicalDataTrialSetId == indto.ClinicalDataTrialSetId && x.ReadingId == indto.ReadingId&&x.StudyId==indto.StudyId);

View File

@ -15,6 +15,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid? Id { get; set; } public Guid? Id { get; set; }
public Guid? StudyId { get; set; }
/// <summary> /// <summary>
/// 项目ID /// 项目ID
/// </summary> /// </summary>