修改一版
parent
20503206e5
commit
5033b39427
|
@ -132,7 +132,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public List<JudgeReadingInfoDto> VisitTaskInfoList { get; set; }
|
public List<JudgeReadingInfoDto> VisitTaskInfoList { get; set; }
|
||||||
|
|
||||||
public ReadingTaskState ReadingTaskState { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
|
public ReadingTaskState ReadingTaskState { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 裁判结果的备注
|
/// 裁判结果的备注
|
||||||
|
|
|
@ -393,6 +393,10 @@ namespace IRaCIS.Application.Services
|
||||||
judgeInfo.VisitTaskInfoList.Add(
|
judgeInfo.VisitTaskInfoList.Add(
|
||||||
new JudgeReadingInfoDto()
|
new JudgeReadingInfoDto()
|
||||||
{
|
{
|
||||||
|
JudgeQuestionAnswerInfoList = await _readingTaskQuestionAnswerRepository.Where(x => x.VisitTaskId == item.Id).Select(x => new JudgeQuestionAnswerInfo {
|
||||||
|
Answer = x.Answer,
|
||||||
|
QuestionName = x.ReadingQuestionTrial.QuestionName,
|
||||||
|
}).ToListAsync(),
|
||||||
VisitTaskId = item.Id,
|
VisitTaskId = item.Id,
|
||||||
ArmEnum = item.ArmEnum,
|
ArmEnum = item.ArmEnum,
|
||||||
TaskReadingQuestionList = taskReadingQuestionList,
|
TaskReadingQuestionList = taskReadingQuestionList,
|
||||||
|
|
Loading…
Reference in New Issue