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