This commit is contained in:
he
2022-06-22 14:53:05 +08:00
parent 89cd7a9008
commit d1e9ab8033
5 changed files with 63 additions and 9 deletions
@@ -146,6 +146,44 @@ namespace IRaCIS.Core.Application.Contracts
}
public class TrialBasicConfigView : TrialTaskConfigView
{
/// <summary>
/// QC流程 0 不审,1 单审,2双审
/// </summary>
public TrialQCProcess QCProcessEnum { get; set; }
/// <summary>
/// 影像一致性核查
/// </summary>
public bool IsImageConsistencyVerification { get; set; } = false;
/// <summary>
/// 流程是否确认
/// </summary>
public bool IsTrialProcessConfirmed { get; set; } = false;
//阅片方式
public int ReadingMode { get; set; }
//阅片类型
public int ReadingType { get; set; }
public bool IsGlobalReading { get; set; } = true;
public bool? IsArbitrationReading { get; set; }
public bool? IsClinicalReading { get; set; }
public int ArbitrationRule { get; set; }
}
public class TrialTaskConfigView : TrialTaskConfig