From 5cf56f529a165d33c7a0c329d5cdabdd05954074 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Tue, 15 Nov 2022 16:32:00 +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
---
.../Service/Reading/Dto/ReadingQuestionViewModel.cs | 9 +++++++++
.../ReadingTableQuestionTrial.cs | 2 +-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
index b0f0467be..d1287c704 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
@@ -278,6 +278,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public CustomCalculateMark? CustomCalculateMark { get; set; }
+
+ ///
+ /// IsDepend
+ ///
+ public IsDepend IsDepend { get; set; }
+
///
/// 自定义计算标记
///
@@ -305,6 +311,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string ParentTriggerValue { get; set; } = string.Empty;
public string QuestionName { get; set; } = string.Empty;
public IsRequired IsRequired { get; set; }
+
+
+
public int ShowOrder { get; set; }
public string TypeValue { get; set; } = string.Empty;
public bool IsEnable { get; set; }
diff --git a/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs b/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
index c4020edf7..8326f5ddc 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
@@ -123,7 +123,7 @@ namespace IRaCIS.Core.Domain.Models
///
/// IsDepend
///
- public IsDepend? IsDepend { get; set; }
+ public IsDepend IsDepend { get; set; }
///