From fc6154a04c48f9c91cc3b5b95b60cc4604e2fa3d Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Mon, 15 Aug 2022 09:21:30 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Reading/Dto/ReadingQuestionViewModel.cs | 14 ++++++++++++++
.../Service/Reading/OrganInfoService.cs | 1 -
.../Reading/ReadingTableQuestionSystem.cs | 6 ++++++
3 files changed, 20 insertions(+), 1 deletion(-)
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; }
+
///
/// 表格问题类型
///