Uat_Study
parent
c05644ecfb
commit
db63148ae0
|
@ -383,38 +383,28 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// <summary>
|
||||
/// 仲裁阅片
|
||||
/// </summary>
|
||||
public bool? IsArbitrationReading { get; set; }
|
||||
public bool? IsArbitrationReading { get; set; }
|
||||
|
||||
|
||||
///// <summary>
|
||||
///// 全局阅片
|
||||
///// </summary>
|
||||
//public bool IsGlobalReading { get; set; } = true;
|
||||
/// <summary>
|
||||
/// 阅片模式
|
||||
/// </summary>
|
||||
public ReadingMethod ReadingType { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// 阅片方式
|
||||
///// </summary>
|
||||
//public int ReadingMode { get; set; } = 1;
|
||||
/// <summary>
|
||||
/// 全局阅片
|
||||
/// </summary>
|
||||
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>
|
||||
//public bool IsReadingTaskViewInOrder { get; set; } = true;
|
||||
/// <summary>
|
||||
/// 肿瘤学阅片 原字段 IsClinicalReading
|
||||
/// </summary>
|
||||
public bool IsOncologyReading { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -825,6 +815,30 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// 仲裁规则/对象
|
||||
/// </summary>
|
||||
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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue