Uat_Study
parent
481db380de
commit
768c7432ae
|
@ -432,6 +432,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid? ReadingQuestionSystemId { get; set; }
|
public Guid? ReadingQuestionSystemId { get; set; }
|
||||||
|
|
||||||
|
public Guid? ReadingCriterionPageId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统标准的ParentId
|
/// 系统标准的ParentId
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -237,6 +237,7 @@ namespace IRaCIS.Application.Services
|
||||||
AnswerGroup = x.AnswerGroup,
|
AnswerGroup = x.AnswerGroup,
|
||||||
Id = x.Id,
|
Id = x.Id,
|
||||||
JudgeType = x.JudgeType,
|
JudgeType = x.JudgeType,
|
||||||
|
ReadingCriterionPageId = x.ReadingCriterionPageId,
|
||||||
ParentId = x.ParentId,
|
ParentId = x.ParentId,
|
||||||
ReadingQuestionCriterionTrialId = x.ReadingQuestionCriterionTrialId,
|
ReadingQuestionCriterionTrialId = x.ReadingQuestionCriterionTrialId,
|
||||||
ReadingQuestionSystemId = x.ReadingQuestionSystemId,
|
ReadingQuestionSystemId = x.ReadingQuestionSystemId,
|
||||||
|
@ -277,6 +278,7 @@ namespace IRaCIS.Application.Services
|
||||||
ParentId = c.trial.FirstOrDefault()?.ParentId,
|
ParentId = c.trial.FirstOrDefault()?.ParentId,
|
||||||
ParentTriggerValue=c.system.ParentTriggerValue,
|
ParentTriggerValue=c.system.ParentTriggerValue,
|
||||||
QuestionName=c.system.QuestionName,
|
QuestionName=c.system.QuestionName,
|
||||||
|
ReadingCriterionPageId=c.trial.FirstOrDefault()?.ReadingCriterionPageId,
|
||||||
ReadingQuestionCriterionTrialId = item.Id,
|
ReadingQuestionCriterionTrialId = item.Id,
|
||||||
Remark=c.system.Remark,
|
Remark=c.system.Remark,
|
||||||
TrialId=item.TrialId,
|
TrialId=item.TrialId,
|
||||||
|
|
|
@ -305,7 +305,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 影像是否有标注
|
/// 影像是否有标注
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsImageStandard { get; set; }
|
public bool IsImageLabled { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// IR阅片是否显示受试者信息
|
/// IR阅片是否显示受试者信息
|
||||||
|
@ -563,7 +563,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 影像是否有标注
|
/// 影像是否有标注
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsImageStandard { get; set; }
|
public bool IsImageLabled { get; set; }
|
||||||
|
|
||||||
//读片任务显示是否顺序
|
//读片任务显示是否顺序
|
||||||
public bool IsReadingTaskViewInOrder { get; set; } = true;
|
public bool IsReadingTaskViewInOrder { get; set; } = true;
|
||||||
|
|
|
@ -88,7 +88,7 @@ namespace IRaCIS.Core.Application
|
||||||
//DigitPlaces=inDto.DigitPlaces,
|
//DigitPlaces=inDto.DigitPlaces,
|
||||||
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
|
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
|
||||||
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
|
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
|
||||||
IsImageStandard = inDto.IsImageStandard,
|
IsImageLabled = inDto.IsImageLabled,
|
||||||
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
|
IsReadingShowSubjectInfo = inDto.IsReadingShowSubjectInfo,
|
||||||
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
|
IsReadingShowPreviousResults = inDto.IsReadingShowPreviousResults,
|
||||||
ImagePlatform=inDto.ImagePlatform,
|
ImagePlatform=inDto.ImagePlatform,
|
||||||
|
|
|
@ -372,7 +372,7 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图像是否有标注
|
/// 图像是否有标注
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsImageStandard { get; set; }
|
public bool IsImageLabled { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue