Test.EIImageViewer
parent
aad722603a
commit
b62560a4c7
|
@ -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
|
||||
|
|
|
@ -183,6 +183,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
CreateMap<Trial, TrialSelectDTO>();
|
||||
|
||||
CreateMap<TrialUrgentConfig, Trial>();
|
||||
CreateMap<Trial, TrialUrgentConfig > ();
|
||||
|
||||
CreateMap<SignDTO, TrialSign>();
|
||||
|
||||
|
|
Loading…
Reference in New Issue