临床数据表格问题添加依赖父问题
This commit is contained in:
@@ -370,12 +370,18 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
{
|
||||
public Guid SystemClinicalId { get; set; }
|
||||
}
|
||||
|
||||
public class GetClinicalOtherTableQuestionListInDto
|
||||
{
|
||||
public Guid QuestionId { get; set; }
|
||||
|
||||
public Guid TableQuestionId { get; set; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
#region 表格问题
|
||||
public class ClinicalTableQuestionBase
|
||||
|
||||
{
|
||||
|
||||
public Guid? Id { get; set; }
|
||||
@@ -456,6 +462,25 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// 单位
|
||||
/// </summary>
|
||||
public string Unit { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 关联ID
|
||||
/// </summary>
|
||||
public Guid? RelevanceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 关联Value
|
||||
/// </summary>
|
||||
public string RelevanceValue
|
||||
{
|
||||
get
|
||||
{
|
||||
return string.Join(',', this.RelevanceValueList);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public List<string> RelevanceValueList { get; set; } = new List<string>();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user