Test.EIImageViewer
he 2022-10-10 17:10:39 +08:00
parent c05644ecfb
commit db63148ae0
2 changed files with 45 additions and 26 deletions

View File

@ -386,35 +386,25 @@ namespace IRaCIS.Core.Application.Contracts
public bool? IsArbitrationReading { get; set; } public bool? IsArbitrationReading { get; set; }
///// <summary> /// <summary>
///// 全局阅片 /// 阅片模式
///// </summary> /// </summary>
//public bool IsGlobalReading { get; set; } = true; public ReadingMethod ReadingType { get; set; }
///// <summary> /// <summary>
///// 阅片方式 /// 全局阅片
///// </summary> /// </summary>
//public int ReadingMode { get; set; } = 1; public bool IsGlobalReading { get; set; }
///// <summary>
///// 阅片模式
///// </summary>
//public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
///// <summary>
///// 仲裁阅片
///// </summary>
//public bool? IsArbitrationReading { get; set; } = true;
///// <summary>
///// 肿瘤学阅片
///// </summary>
//public bool IsClinicalReading { get; set; }
///// <summary> /// <summary>
///// 读片任务显示是否顺序 /// 肿瘤学阅片 原字段 IsClinicalReading
///// </summary> /// </summary>
//public bool IsReadingTaskViewInOrder { get; set; } = true; public bool IsOncologyReading { get; set; }
@ -825,6 +815,30 @@ namespace IRaCIS.Core.Application.Contracts
/// 仲裁规则/对象 /// 仲裁规则/对象
/// </summary> /// </summary>
public ArbitrationRule ArbitrationRule { get; set; } public ArbitrationRule ArbitrationRule { get; set; }
/// <summary>
/// 阅片模式
/// </summary>
public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
/// <summary>
/// 全局阅片
/// </summary>
public bool IsGlobalReading { get; set; } = true;
/// <summary>
/// 仲裁阅片
/// </summary>
public bool IsArbitrationReading { get; set; } = true;
/// <summary>
/// 肿瘤学阅片 原字段 IsClinicalReading
/// </summary>
public bool IsOncologyReading { get; set; }
} }
public class SignConfirmDTO public class SignConfirmDTO

View File

@ -329,6 +329,11 @@ namespace IRaCIS.Core.Application
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults, IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
ImagePlatform=inDto.ImagePlatform, ImagePlatform=inDto.ImagePlatform,
ArbitrationRule=inDto.ArbitrationRule, ArbitrationRule=inDto.ArbitrationRule,
ReadingType = inDto.ReadingType,
IsGlobalReading = inDto.IsGlobalReading,
IsArbitrationReading = inDto.IsArbitrationReading,
IsOncologyReading = inDto.IsOncologyReading,
}); });