diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
index 444fa5a17..022957148 100644
--- a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
+++ b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs
@@ -383,38 +383,28 @@ namespace IRaCIS.Core.Application.Contracts
///
/// 仲裁阅片
///
- public bool? IsArbitrationReading { get; set; }
+ public bool? IsArbitrationReading { get; set; }
- /////
- ///// 全局阅片
- /////
- //public bool IsGlobalReading { get; set; } = true;
+ ///
+ /// 阅片模式
+ ///
+ public ReadingMethod ReadingType { get; set; }
- /////
- ///// 阅片方式
- /////
- //public int ReadingMode { get; set; } = 1;
+ ///
+ /// 全局阅片
+ ///
+ public bool IsGlobalReading { get; set; }
- /////
- ///// 阅片模式
- /////
- //public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
- /////
- ///// 仲裁阅片
- /////
- //public bool? IsArbitrationReading { get; set; } = true;
- /////
- ///// 肿瘤学阅片
- /////
- //public bool IsClinicalReading { get; set; }
- /////
- ///// 读片任务显示是否顺序
- /////
- //public bool IsReadingTaskViewInOrder { get; set; } = true;
+ ///
+ /// 肿瘤学阅片 原字段 IsClinicalReading
+ ///
+ public bool IsOncologyReading { get; set; }
+
+
@@ -825,6 +815,30 @@ namespace IRaCIS.Core.Application.Contracts
/// 仲裁规则/对象
///
public ArbitrationRule ArbitrationRule { get; set; }
+
+
+
+ ///
+ /// 阅片模式
+ ///
+ public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
+
+ ///
+ /// 全局阅片
+ ///
+ public bool IsGlobalReading { get; set; } = true;
+
+ ///
+ /// 仲裁阅片
+ ///
+ public bool IsArbitrationReading { get; set; } = true;
+
+
+ ///
+ /// 肿瘤学阅片 原字段 IsClinicalReading
+ ///
+ public bool IsOncologyReading { get; set; }
+
}
public class SignConfirmDTO
diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
index a92e4d593..eac574549 100644
--- a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
+++ b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs
@@ -329,7 +329,12 @@ namespace IRaCIS.Core.Application
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
ImagePlatform=inDto.ImagePlatform,
ArbitrationRule=inDto.ArbitrationRule,
-
+ ReadingType = inDto.ReadingType,
+ IsGlobalReading = inDto.IsGlobalReading,
+ IsArbitrationReading = inDto.IsArbitrationReading,
+ IsOncologyReading = inDto.IsOncologyReading,
+
+
});
var result = await _readingQuestionCriterionTrialRepository.SaveChangesAsync();