Uat_Study
he 2022-07-13 11:50:00 +08:00
parent 481db380de
commit 768c7432ae
5 changed files with 8 additions and 4 deletions

View File

@ -432,6 +432,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public Guid? ReadingQuestionSystemId { get; set; }
public Guid? ReadingCriterionPageId { get; set; }
/// <summary>
/// 系统标准的ParentId
/// </summary>

View File

@ -237,6 +237,7 @@ namespace IRaCIS.Application.Services
AnswerGroup = x.AnswerGroup,
Id = x.Id,
JudgeType = x.JudgeType,
ReadingCriterionPageId = x.ReadingCriterionPageId,
ParentId = x.ParentId,
ReadingQuestionCriterionTrialId = x.ReadingQuestionCriterionTrialId,
ReadingQuestionSystemId = x.ReadingQuestionSystemId,
@ -277,6 +278,7 @@ namespace IRaCIS.Application.Services
ParentId = c.trial.FirstOrDefault()?.ParentId,
ParentTriggerValue=c.system.ParentTriggerValue,
QuestionName=c.system.QuestionName,
ReadingCriterionPageId=c.trial.FirstOrDefault()?.ReadingCriterionPageId,
ReadingQuestionCriterionTrialId = item.Id,
Remark=c.system.Remark,
TrialId=item.TrialId,

View File

@ -305,7 +305,7 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 影像是否有标注
/// </summary>
public bool IsImageStandard { get; set; }
public bool IsImageLabled { get; set; }
/// <summary>
/// IR阅片是否显示受试者信息
@ -563,7 +563,7 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 影像是否有标注
/// </summary>
public bool IsImageStandard { get; set; }
public bool IsImageLabled { get; set; }
//读片任务显示是否顺序
public bool IsReadingTaskViewInOrder { get; set; } = true;

View File

@ -88,7 +88,7 @@ namespace IRaCIS.Core.Application
//DigitPlaces=inDto.DigitPlaces,
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
IsImageStandard = inDto.IsImageStandard,
IsImageLabled = inDto.IsImageLabled,
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
ImagePlatform=inDto.ImagePlatform,

View File

@ -372,7 +372,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 图像是否有标注
/// </summary>
public bool IsImageStandard { get; set; }
public bool IsImageLabled { get; set; }