diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs index 1b9556145..2a8c26824 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs @@ -34,6 +34,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// 表格问题类型 /// public TableQuestionType TableQuestionType { get; set; } + + + /// + /// 依赖父问题 + /// + public Guid? DependParentId { get; set; } } @@ -77,6 +83,14 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// 表格问题类型 /// public TableQuestionType TableQuestionType { get; set; } + + /// + /// 依赖父问题 + /// + public Guid? DependParentId { get; set; } + + + } public class ReadingCriterionPageView diff --git a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs index af3dd129b..335bd14a6 100644 --- a/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs +++ b/IRaCIS.Core.Application/Service/Reading/OrganInfoService.cs @@ -129,7 +129,6 @@ namespace IRaCIS.Core.Application.Service Part = data.Part, TULAT = data.TULAT, TULOC = data.TULOC, - Remark= data.Remark, OrganType=data.OrganType, }; diff --git a/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs b/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs index a9dd860db..3fc329a76 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingTableQuestionSystem.cs @@ -106,6 +106,12 @@ namespace IRaCIS.Core.Domain.Models /// public string DataTableColumn { get; set; } + + /// + /// 依赖父问题 + /// + public Guid? DependParentId { get; set; } + /// /// 表格问题类型 ///