Test.EIImageViewer
parent
a38fc6fb18
commit
1b15abee23
|
@ -884,6 +884,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public int? DigitPlaces { get; set; } = 2;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 标准类型
|
||||
/// </summary>
|
||||
public CriterionType CriterionType { get; set; }
|
||||
|
||||
public bool IsExistsNoDicomFile { get; set; } = false;
|
||||
|
||||
public string TaskBlindName { get; set; }
|
||||
|
|
|
@ -1205,6 +1205,7 @@ namespace IRaCIS.Application.Services
|
|||
x.IsReadingShowPreviousResults,
|
||||
x.IsReadingShowSubjectInfo,
|
||||
x.DigitPlaces,
|
||||
x.CriterionType,
|
||||
}).FirstOrDefaultAsync();
|
||||
|
||||
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
|
||||
|
@ -1222,6 +1223,7 @@ namespace IRaCIS.Application.Services
|
|||
})).Count() > 0;
|
||||
|
||||
task.DigitPlaces = criterionInfo.DigitPlaces;
|
||||
task.CriterionType = criterionInfo.CriterionType;
|
||||
|
||||
return task;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue