diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index e6d85a1c1..28e92d809 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -1484,6 +1484,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
+ public string DefaultValue { get; set; }
public Guid Id { get; set; }
@@ -1503,6 +1504,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public string DictionaryCode { get; set; }
+ ///
+ /// 默认值
+ ///
+ public string DefaultValue { get; set; } = string.Empty;
+
///
/// 类型
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingTaskQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingTaskQuestionService.cs
index 1f4dcab29..7ed4d1a2e 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingTaskQuestionService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingTaskQuestionService.cs
@@ -309,6 +309,7 @@ namespace IRaCIS.Application.Services
Childrens = new List(),
ShowOrder = x.ShowOrder,
GroupName = string.Empty,
+
Id = x.Id,
Type = x.Type,
DictionaryCode = x.DictionaryCode,