diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index e09390ce3..a1b31805e 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -84,6 +84,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public string OrderMark { get; set; } = string.Empty;
+ ///
+ /// 数值类型
+ ///
+ public ValueOfType? ValueType { get; set; }
+
+ ///
+ /// 单位
+ ///
+ public ValueUnit? Unit { get; set; }
+
public List Answer { get; set; } = new List();
public List Childrens { get; set; } = new List();
@@ -1698,13 +1708,21 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
-
-
+ ///
+ /// 数值类型
+ ///
+ public ValueOfType? ValueType { get; set; }
+
+ ///
+ /// 单位
+ ///
+ public ValueUnit? Unit { get; set; }
+
+
+
-
-
}
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
index 607fd471d..f1f1f2c5a 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
@@ -542,6 +542,8 @@ namespace IRaCIS.Application.Services
TypeValue = x.TypeValue,
QuestionName = x.QuestionName,
ShowOrder = x.ShowOrder,
+ ValueType=x.ValueType,
+ Unit=x.Unit,
}).ToList();
@@ -562,7 +564,8 @@ namespace IRaCIS.Application.Services
TypeValue = x.TypeValue,
ShowOrder = x.ShowOrder,
OrderMark = x.OrderMark,
-
+ ValueType = x.ValueType,
+ Unit = x.Unit,
}).ToList();
@@ -611,7 +614,8 @@ namespace IRaCIS.Application.Services
TypeValue = x.TypeValue,
RowIndex = row.RowIndex,
ShowOrder = x.ShowOrder,
-
+ ValueType = x.ValueType,
+ Unit = x.Unit,
}).ToList();
@@ -816,7 +820,8 @@ namespace IRaCIS.Application.Services
QuestionName = x.QuestionName,
RelationQuestions = new List(),
Remark = x.Remark,
-
+ ValueType=x.ValueType,
+ Unit=x.Unit,
}).ToList();
});
var thisAnswer = tableAnswers.Where(x => x.QuestionId == item.Id).ToList();