Uat_Study
he 2022-11-11 10:07:02 +08:00
parent a38fc6fb18
commit 1b15abee23
2 changed files with 8 additions and 0 deletions

View File

@ -884,6 +884,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public int? DigitPlaces { get; set; } = 2; public int? DigitPlaces { get; set; } = 2;
/// <summary>
/// 标准类型
/// </summary>
public CriterionType CriterionType { get; set; }
public bool IsExistsNoDicomFile { get; set; } = false; public bool IsExistsNoDicomFile { get; set; } = false;
public string TaskBlindName { get; set; } public string TaskBlindName { get; set; }

View File

@ -1205,6 +1205,7 @@ namespace IRaCIS.Application.Services
x.IsReadingShowPreviousResults, x.IsReadingShowPreviousResults,
x.IsReadingShowSubjectInfo, x.IsReadingShowSubjectInfo,
x.DigitPlaces, x.DigitPlaces,
x.CriterionType,
}).FirstOrDefaultAsync(); }).FirstOrDefaultAsync();
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults; task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
@ -1222,6 +1223,7 @@ namespace IRaCIS.Application.Services
})).Count() > 0; })).Count() > 0;
task.DigitPlaces = criterionInfo.DigitPlaces; task.DigitPlaces = criterionInfo.DigitPlaces;
task.CriterionType = criterionInfo.CriterionType;
return task; return task;
} }