Test.EIImageViewer
parent
5a988e69aa
commit
efc595c615
|
@ -2134,7 +2134,8 @@ namespace IRaCIS.Application.Services
|
|||
.Select(x => new
|
||||
{
|
||||
QuestionMark = x.ReadingTableQuestionTrial.QuestionMark,
|
||||
Answer = x.Answer
|
||||
Answer = x.Answer,
|
||||
|
||||
}).ToListAsync();
|
||||
|
||||
if (tableAnswerList.Any(x => x.QuestionMark == QuestionMark.State && x.Answer.IsNullOrEmpty()))
|
||||
|
|
|
@ -17,6 +17,21 @@ namespace IRaCIS.Core.Domain.Share
|
|||
}
|
||||
|
||||
|
||||
public enum ImagePlatform
|
||||
{
|
||||
None=0,
|
||||
|
||||
|
||||
MINT=1,
|
||||
|
||||
Ambra=2,
|
||||
|
||||
/// <summary>
|
||||
/// 展影
|
||||
/// </summary>
|
||||
PACS=3,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 标准类型
|
||||
/// </summary>
|
||||
|
|
|
@ -114,6 +114,69 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public CriterionType? CriterionType { get; set; }
|
||||
|
||||
#region 阅片单元配置 新加
|
||||
|
||||
/// <summary>
|
||||
/// 阅片平台
|
||||
/// </summary>
|
||||
public ImagePlatform ImagePlatform { get; set; } = ImagePlatform.MINT;
|
||||
|
||||
/// <summary>
|
||||
/// 阅片工具
|
||||
/// </summary>
|
||||
public ReadingTool? ReadingTool { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务组织级别
|
||||
/// </summary>
|
||||
public ReadingTaskViewMethod ReadingTaskViewEnum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 阅片是否显示受试者信息
|
||||
/// </summary>
|
||||
public bool IsReadingShowSubjectInfo { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// IR阅片页面是否可以查看既往任务结果
|
||||
/// </summary>
|
||||
public bool IsReadingShowPreviousResults { get; set; } = false;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 仲裁对象
|
||||
/// </summary>
|
||||
public ArbitrationRule ArbitrationRule { get; set; } = ArbitrationRule.None;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 阅片模式
|
||||
/// </summary>
|
||||
public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
|
||||
|
||||
/// <summary>
|
||||
/// 全局阅片
|
||||
/// </summary>
|
||||
public bool IsGlobalReading { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 仲裁阅片
|
||||
/// </summary>
|
||||
public bool IsArbitrationReading { get; set; } = true;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 肿瘤学阅片 原字段 IsClinicalReading
|
||||
/// </summary>
|
||||
public bool IsOncologyReading { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务展示访视
|
||||
/// </summary>
|
||||
public bool IsReadingTaskViewInOrder { get; set; } = true;
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 项目
|
||||
/// </summary>
|
||||
|
|
|
@ -147,8 +147,15 @@ namespace IRaCIS.Core.Domain.Models
|
|||
public bool IsBaseLine { get; set; } = false;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 标准Id
|
||||
/// </summary>
|
||||
public Guid? TrialReadingCriterionId { get; set; }
|
||||
|
||||
|
||||
//public Guid? TrialReadingCriterionId { get; set; }
|
||||
/// <summary>
|
||||
/// 标准名称
|
||||
/// </summary>
|
||||
public string CriterionName { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue