修复 获取未审核任务列表时包含labels

This commit is contained in:
weiweiw 2024-12-02 10:40:23 +08:00
parent 34fee494f6
commit e5a829cfed
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@
</select>
<select id="getMyNoAuditTask" resultType="com.bonus.ai.domain.dataset.AnnotationTaskEntity">
SELECT distinct at.task_id AS taskId , at.task_name AS taskName
SELECT distinct at.task_id AS taskId , at.task_name AS taskName, at.labels as labels
FROM ai_annotation_task at
LEFT JOIN ai_annotation_task_annotator_map ap on at.task_id = ap.task_id
WHERE at.del_flag = '0' and ap.annotation_status IN ('1') and ap.reviewer_id = #{reviewerId}