diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
index 734b67a89..8049bd4db 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
@@ -131,7 +131,7 @@ namespace IRaCIS.Application.Services
/// (QuestionId) 可为空
///
///
- public async Task> GetTableAnswerRowInfo(GetTableAnswerRowInfoInDto inDto)
+ public async Task> GetTableAnswerRowInfoList(GetTableAnswerRowInfoInDto inDto)
{
return await _readingTableAnswerRowInfoRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId)
.WhereIf(inDto.QuestionId != null, x => x.QuestionId == inDto.QuestionId)