修改一版

This commit is contained in:
he
2022-08-25 11:43:14 +08:00
parent 2b08e8c517
commit 5f50479309
6 changed files with 102 additions and 34 deletions
@@ -671,6 +671,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public List<GetTrialReadingQuestionOutDto> PublicPage{ get; set; }
}
public class GetTrialReadingQuestionOutDto
{
public Guid ReadingQuestionTrialId { get; set; }
@@ -475,6 +475,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 问题类型
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary>
/// 是否显示在Dicom阅片中
/// </summary>
public bool IsShowInDicom { get; set; }
}
public class ReadingQuestionSystemView
@@ -586,6 +591,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 问题类型
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary>
/// 是否显示在Dicom阅片中
/// </summary>
public bool IsShowInDicom { get; set; }
}
@@ -874,6 +884,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 问题类型
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary>
/// 是否显示在Dicom阅片中
/// </summary>
public bool IsShowInDicom { get; set; } = false;
}
@@ -993,6 +1008,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 问题类型
/// </summary>
public QuestionType? QuestionType { get; set; }
/// <summary>
/// 是否显示在Dicom阅片中
/// </summary>
public bool IsShowInDicom { get; set; } = false;
}