新增修改裁表单修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2026-08-12 11:22:49 +08:00
parent 6bb4167ac7
commit 7b1449189e
2 changed files with 112 additions and 30 deletions
@@ -2457,6 +2457,41 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string R2Answer { get; set; } = string.Empty;
}
public class GetJudgeFormInDto
{
[NotDefault]
public Guid VisitTaskId { get; set; }
}
public class GetJudgeFormOutDto
{
public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>();
}
public class JudgeFormQuestionDto
{
public Guid ReadingQuestionId { get; set; }
public string QuestionName { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public string TypeValue { get; set; } = string.Empty;
public int ShowOrder { get; set; }
public string Answer { get; set; } = string.Empty;
}
public class SetJudgeFormInDto
{
[NotDefault]
public Guid VisitTaskId { get; set; }
public List<JudgeFormAnswerDto> QuestionList { get; set; } = new List<JudgeFormAnswerDto>();
}
public class JudgeFormAnswerDto
{
public Guid ReadingQuestionId { get; set; }
public string Answer { get; set; } = string.Empty;
}
public class JudgeReadingInfoDto
{
public string VisitName { get; set; }