Test.EIImageViewer
hang 2023-03-09 10:58:03 +08:00
parent aad722603a
commit b62560a4c7
2 changed files with 31 additions and 1 deletions

View File

@ -220,7 +220,36 @@ namespace IRaCIS.Core.Application.Contracts
public class TrialTaskConfigView : TrialTaskConfig
{
public ReadingTaskViewMethod ReadingTaskViewEnum { get; set; }
public bool IsReadingTaskViewInOrder { get; set; } = true;
//public ReadingMethod ReadingType { get; set; }
/// <summary>
/// 阅片是否显示受试者信息
/// </summary>
public bool IsReadingShowSubjectInfo { get; set; }
/// <summary>
/// 阅片是否显示既往结果
/// </summary>
public bool IsReadingShowPreviousResults { get; set; }
public ReadingTool ReadingTool { get; set; }
/// <summary>
/// QC流程 0 不审1 单审2双审
/// </summary>
public TrialQCProcess QCProcessEnum { get; set; } = TrialQCProcess.DoubleAudit;
/// <summary>
/// 影像一致性核查
/// </summary>
public bool IsImageConsistencyVerification { get; set; } = true;
}
public class TrialReadingTaskViewConfig

View File

@ -183,6 +183,7 @@ namespace IRaCIS.Core.Application.Service
CreateMap<Trial, TrialSelectDTO>();
CreateMap<TrialUrgentConfig, Trial>();
CreateMap<Trial, TrialUrgentConfig > ();
CreateMap<SignDTO, TrialSign>();