diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
index e42669043..76203c283 100644
--- a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
+++ b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
@@ -348,6 +348,11 @@ namespace IRaCIS.Core.Application.Contracts
///
public int ImagePlatform { get; set; } = 1;
+ ///
+ /// 修约小数点
+ ///
+ public int? DigitPlaces { get; set; } = 2;
+
///
/// 系统标准ID
@@ -852,10 +857,10 @@ namespace IRaCIS.Core.Application.Contracts
public FormType FormType { get; set; }
- ///
- /// 修约小数点
- ///
- public int? DigitPlaces { get; set; }
+ /////
+ ///// 修约小数点
+ /////
+ //public int? DigitPlaces { get; set; }
public bool IsSignSave { get; set; } = false;
@@ -872,6 +877,11 @@ namespace IRaCIS.Core.Application.Contracts
public string GlobalUpdateType { get; set; } = string.Empty;
+ ///
+ /// 修约小数点
+ ///
+ public int? DigitPlaces { get; set; } = 2;
+
///
/// 阅片工具
///
diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
index a92a08470..d86c8f912 100644
--- a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
+++ b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
@@ -429,7 +429,7 @@ namespace IRaCIS.Core.Application
await _readingQuestionCriterionTrialRepository.UpdatePartialFromQueryAsync(inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
{
FormType = inDto.FormType,
- DigitPlaces = inDto.DigitPlaces,
+
});
@@ -462,6 +462,7 @@ namespace IRaCIS.Core.Application
//DigitPlaces=inDto.DigitPlaces,
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
+ DigitPlaces= inDto.DigitPlaces,
//IsImageIabeled = inDto.IsImageIabeled,
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,