Compare commits

..

No commits in common. "27ec62a3c0f9f0382d30c3bdf681e7e98ec0f9e7" and "34fee494f60cd0bd6bebbb212f0d3f70299008e1" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

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