临床数据表格问题添加依赖父问题

This commit is contained in:
he
2023-09-01 15:46:56 +08:00
parent aea09998f9
commit 46de4000a1
5 changed files with 153 additions and 1 deletions
@@ -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>();
}