修改一版

Test.EIImageViewer
he 2022-10-28 17:21:55 +08:00
parent 1c6d03af0e
commit 69f3072a05
5 changed files with 59 additions and 0 deletions

View File

@ -614,6 +614,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 问题类型
/// </summary>
@ -777,6 +783,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public TableQuestionType? QuestionGenre { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 字典code
/// </summary>
@ -1089,6 +1101,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public ValueUnit? Unit { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 分组
/// </summary>
@ -1223,6 +1240,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid TrialId { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 系统标准Id
/// </summary>

View File

@ -602,6 +602,9 @@ namespace IRaCIS.Application.Services
}
});
break;
case JudgeTypeEnum.NotCalculate:
noteEqual = false;
break;
}
}
}

View File

@ -630,7 +630,27 @@ namespace IRaCIS.Core.Domain.Share
Site = 1,
}
/// <summary>
/// 全局阅片展示类型
/// </summary>
public enum GlobalReadingShowType
{
/// <summary>
/// 全都显示
/// </summary>
AllShow = 0,
/// <summary>
/// 基线显示
/// </summary>
BaseLineShow = 1,
/// <summary>
/// 随访显示
/// </summary>
FollowVisitShow = 2
}
@ -1012,6 +1032,10 @@ namespace IRaCIS.Core.Domain.Share
/// </summary>
AnswerCombination = 3,
/// <summary>
/// 不计算
/// </summary>
NotCalculate=4,
}

View File

@ -140,6 +140,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public TableQuestionType? QuestionGenre { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 数值类型
/// </summary>

View File

@ -77,6 +77,11 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary>
/// 全局阅片显示类型
/// </summary>
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
/// <summary>
/// 备注
/// </summary>