修改一版

This commit is contained in:
he
2022-09-20 10:47:07 +08:00
parent bb774ce622
commit e5f57faf36
5 changed files with 187 additions and 1 deletions
@@ -462,6 +462,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 字典code
/// </summary>
public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 系统标准Id
/// </summary>
@@ -588,6 +595,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 字典code
/// </summary>
public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 关联ID
/// </summary>
@@ -920,6 +933,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string ParentTriggerValue { get; set; } = string.Empty;
/// <summary>
/// 字典code
/// </summary>
public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 问题名称
/// </summary>
@@ -1013,6 +1032,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid ReadingQuestionCriterionTrialId { get; set; }
/// <summary>
/// 字典code
/// </summary>
public string DictionaryCode { get; set; } = string.Empty;
/// <summary>
/// 是否是裁判问题
/// </summary>
@@ -629,7 +629,7 @@ namespace IRaCIS.Core.Application.Service
return "NA";
}
var result = inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.TargetLesion && x.Answer == "NE");
var result = inDto.QuestionInfo.Any(x => x.QuestionType == QuestionType.TargetLesion && x.Answer.EqEnum(TargetAssessment.NE));
return result ? "有" : "无";
}