修改一版
This commit is contained in:
@@ -18,7 +18,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public class GetReadingImgInDto
|
||||
{
|
||||
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
public Guid VisitTaskId { get; set; }
|
||||
}
|
||||
|
||||
public class GetConfirmCriterionInDto
|
||||
@@ -34,12 +34,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public class GetTrialConfirmCriterionListOutDto
|
||||
{
|
||||
public Guid CriterionId { get; set; }
|
||||
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准
|
||||
/// </summary>
|
||||
public string CriterionName { get; set; }
|
||||
public string ReadingQuestionCriterionTrialName { get; set; }
|
||||
}
|
||||
|
||||
|
||||
@@ -54,33 +54,42 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public class SubmitVisitTaskQuestionsInDto
|
||||
{
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public Guid VisitTaskId { get; set; }
|
||||
|
||||
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
||||
|
||||
public List<QuestionAnswer> AnswerList { get; set; } = new List<QuestionAnswer>();
|
||||
}
|
||||
|
||||
|
||||
public class QuestionAnswer
|
||||
{
|
||||
public Guid TrialQuestionId { get; set; }
|
||||
public Guid ReadingQuestionTrialId { get; set; }
|
||||
|
||||
public string Answer { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class GetTrialReadingQuestionDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
//public class GetTrialReadingQuestionDto
|
||||
//{
|
||||
// public Guid Id { get; set; }
|
||||
|
||||
public string GroupName { get; set; }
|
||||
// public string GroupName { get; set; }
|
||||
|
||||
List<GetTrialReadingQuestionOutDto> Questions { get; set; }
|
||||
}
|
||||
// List<GetTrialReadingQuestionOutDto> Questions { get; set; }
|
||||
//}
|
||||
|
||||
public class GetTrialReadingQuestionOutDto
|
||||
{
|
||||
public Guid ReadingQuestionTrialId { get; set; }
|
||||
|
||||
public Guid Id { get; set; }
|
||||
/// <summary>
|
||||
/// 项目标准Id
|
||||
/// </summary>
|
||||
public Guid ReadingQuestionCriterionTrialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目Id
|
||||
@@ -97,6 +106,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public string ParentTriggerValue { get; set; }
|
||||
|
||||
public string GroupName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题名称
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user