获取裁判表单 返回备注和截图的信息
parent
c714a81edf
commit
416793018f
|
|
@ -2490,6 +2490,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public class GetJudgeFormOutDto
|
public class GetJudgeFormOutDto
|
||||||
{
|
{
|
||||||
|
public string JudgeResultRemark { get; set; } = string.Empty;
|
||||||
|
public List<string> JudgeResultImagePathList { get; set; } = new List<string>();
|
||||||
public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>();
|
public List<JudgeFormQuestionDto> QuestionList { get; set; } = new List<JudgeFormQuestionDto>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -180,6 +180,8 @@ namespace IRaCIS.Core.Application.Service
|
||||||
|
|
||||||
return new GetJudgeFormOutDto
|
return new GetJudgeFormOutDto
|
||||||
{
|
{
|
||||||
|
JudgeResultRemark = taskInfo.JudgeResultRemark,
|
||||||
|
JudgeResultImagePathList = taskInfo.JudgeResultImagePathList,
|
||||||
QuestionList = questionList.Select(x => new JudgeFormQuestionDto
|
QuestionList = questionList.Select(x => new JudgeFormQuestionDto
|
||||||
{
|
{
|
||||||
ReadingQuestionId = x.Id,
|
ReadingQuestionId = x.Id,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue