标注任务代码修改完善

This commit is contained in:
weiweiw 2024-12-17 18:07:34 +08:00
parent 6ab3065482
commit baab2d2c68
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@
COUNT(*) AS totalCount,
DATE_FORMAT(at.start_time, '%Y-%m-%d %H:%i:%s') AS startTime,
DATE_FORMAT(at.end_time, '%Y-%m-%d %H:%i:%s') AS endTime,
GROUP_CONCAT(DISTINCT ap.annotator_id) AS annotator_ids,
GROUP_CONCAT(DISTINCT ap.reviewer_id) AS reviewer_ids
GROUP_CONCAT(DISTINCT ap.annotator_id) AS annotatorIds,
GROUP_CONCAT(DISTINCT ap.reviewer_id) AS reviewerIds
FROM ai_annotation_task at
LEFT JOIN ai_annotation_task_annotator_map ap on at.task_id = ap.task_id
LEFT JOIN ai_dataset ad on ad.dataset_id = at.dataset_id