修改一版
parent
1c6d03af0e
commit
69f3072a05
|
@ -614,6 +614,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string GroupName { get; set; }
|
public string GroupName { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题类型
|
/// 问题类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -777,6 +783,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TableQuestionType? QuestionGenre { get; set; }
|
public TableQuestionType? QuestionGenre { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字典code
|
/// 字典code
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1089,6 +1101,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ValueUnit? Unit { get; set; }
|
public ValueUnit? Unit { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 分组
|
/// 分组
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1223,6 +1240,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统标准Id
|
/// 系统标准Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -602,6 +602,9 @@ namespace IRaCIS.Application.Services
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
case JudgeTypeEnum.NotCalculate:
|
||||||
|
noteEqual = false;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -630,7 +630,27 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
Site = 1,
|
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>
|
/// </summary>
|
||||||
AnswerCombination = 3,
|
AnswerCombination = 3,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 不计算
|
||||||
|
/// </summary>
|
||||||
|
NotCalculate=4,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -140,6 +140,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TableQuestionType? QuestionGenre { get; set; }
|
public TableQuestionType? QuestionGenre { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 数值类型
|
/// 数值类型
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -77,6 +77,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public QuestionType? QuestionType { get; set; }
|
public QuestionType? QuestionType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 全局阅片显示类型
|
||||||
|
/// </summary>
|
||||||
|
public GlobalReadingShowType GlobalReadingShowType { get; set; } = GlobalReadingShowType.AllShow;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 备注
|
/// 备注
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue