IRC_NewDev
he 2023-07-10 09:14:33 +08:00
parent bfeb41fea9
commit 03c07cf969
2 changed files with 15 additions and 7 deletions

View File

@ -677,10 +677,13 @@ namespace IRaCIS.Application.Services
}).ToList() }).ToList()
}); });
var result = new List<GetReadingClinicalDataListOutDto>();
if (!inDto.IsOnlyGetCRCReadModule)
{
result = await resultQuery.ToListAsync();
}
var result = await resultQuery.ToListAsync();
// 这里处理CRC上传 阅片期的临床数据 // 这里处理CRC上传 阅片期的临床数据

View File

@ -186,6 +186,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid? ReadingClinicalDataId { get; set; } public Guid? ReadingClinicalDataId { get; set; }
/// <summary>
/// 只获取CRC上传的阅片模块结构化录入
/// </summary>
public bool IsOnlyGetCRCReadModule { get; set; } = false;
/// <summary> /// <summary>
/// 只查询已经签名的临床数据 /// 只查询已经签名的临床数据
/// </summary> /// </summary>