修改获取审核状态的接口

This commit is contained in:
weiweiw 2024-12-01 15:46:04 +08:00
parent 65c6632447
commit 5212bf1287
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ public class AnnotationTaskServiceImpl implements AnnotationTaskService {
@Override
public List<AnnotationTaskEntity> getMyNoAuditTask(){
Long reviewerId = SecurityUtils.getUserId();
return annotationTaskMapper.getMyNoAnnotationTask(reviewerId);
return annotationTaskMapper.getMyNoAuditTask(reviewerId);
}