Merge branch 'Test_IRC_Net10' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net10
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
commit
81f0d108f5
|
|
@ -2490,6 +2490,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
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>();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -180,6 +180,8 @@ namespace IRaCIS.Core.Application.Service
|
|||
|
||||
return new GetJudgeFormOutDto
|
||||
{
|
||||
JudgeResultRemark = taskInfo.JudgeResultRemark,
|
||||
JudgeResultImagePathList = taskInfo.JudgeResultImagePathList,
|
||||
QuestionList = questionList.Select(x => new JudgeFormQuestionDto
|
||||
{
|
||||
ReadingQuestionId = x.Id,
|
||||
|
|
|
|||
Loading…
Reference in New Issue