修改一版
parent
1c6d03af0e
commit
69f3072a05
|
@ -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>
|
||||
|
|
|
@ -602,6 +602,9 @@ namespace IRaCIS.Application.Services
|
|||
}
|
||||
});
|
||||
break;
|
||||
case JudgeTypeEnum.NotCalculate:
|
||||
noteEqual = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue