Uat_Study
parent
ec62b90ea5
commit
d98d211bb2
|
@ -337,6 +337,11 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// </summary>
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有全局阅片任务
|
||||
/// </summary>
|
||||
public bool IsGlobalTask { get; set; } = true;
|
||||
|
||||
public bool IsSystemCriterion
|
||||
{
|
||||
get
|
||||
|
@ -796,7 +801,12 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// <summary>
|
||||
/// eCRF报告是否显示在图像页面
|
||||
/// </summary>
|
||||
public bool IseCRFShowInDicomReading { get; set; }
|
||||
public bool IseCRFShowInDicomReading { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有全局阅片任务
|
||||
/// </summary>
|
||||
public bool IsGlobalTask { get; set; } = true;
|
||||
|
||||
|
||||
public string GlobalUpdateType { get; set; } = string.Empty;
|
||||
|
|
|
@ -457,8 +457,9 @@ namespace IRaCIS.Core.Application
|
|||
await _readingQuestionCriterionTrialRepository.UpdatePartialFromQueryAsync(inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
|
||||
{
|
||||
ReadingTool=inDto.ReadingTool,
|
||||
IsGlobalTask=inDto.IsGlobalTask,
|
||||
//DigitPlaces=inDto.DigitPlaces,
|
||||
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
|
||||
IsReadingTaskViewInOrder =inDto.IsReadingTaskViewInOrder,
|
||||
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
|
||||
DigitPlaces= inDto.DigitPlaces,
|
||||
//IsImageIabeled = inDto.IsImageIabeled,
|
||||
|
|
|
@ -168,10 +168,15 @@ namespace IRaCIS.Core.Domain.Models
|
|||
public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
|
||||
|
||||
/// <summary>
|
||||
/// 全局阅片
|
||||
/// 阅片期
|
||||
/// </summary>
|
||||
public bool IsGlobalReading { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 是否有全局阅片任务
|
||||
/// </summary>
|
||||
public bool IsGlobalTask { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 仲裁阅片
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue