重新发布

Test_IRC_Net10
he 2026-07-27 14:03:54 +08:00
parent 900f4dfb64
commit c00d1fb89c
1 changed files with 2 additions and 2 deletions

View File

@ -1407,7 +1407,7 @@ namespace IRaCIS.Core.Application.Service
/// <param name="inDto"></param> /// <param name="inDto"></param>
/// <returns></returns> /// <returns></returns>
[HttpPost] [HttpPost]
public async Task<TrialReadQuestionData> GetFilterTableQuestion(GetFilterTableQuestionInDto inDto) public async Task<(TrialReadQuestionData,object)> GetFilterTableQuestion(GetFilterTableQuestionInDto inDto)
{ {
var taskinfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).FirstNotNullAsync(); var taskinfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).FirstNotNullAsync();
var tableAnswers = await _readingTableQuestionAnswerRepository var tableAnswers = await _readingTableQuestionAnswerRepository
@ -1430,7 +1430,7 @@ namespace IRaCIS.Core.Application.Service
var result = questionPage.SinglePage.SelectMany(x => x.Childrens).Where(x => x.Id == inDto.QuestionId).FirstOrDefault(); var result = questionPage.SinglePage.SelectMany(x => x.Childrens).Where(x => x.Id == inDto.QuestionId).FirstOrDefault();
return result; return (result,true);
} }
/// <summary> /// <summary>