From d44986cd5c1b4229a71ef6bed56073b1bffabbbb Mon Sep 17 00:00:00 2001 From: weiweiw <14335254+weiweiw22@user.noreply.gitee.com> Date: Fri, 29 Nov 2024 17:52:54 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=A0=87=E6=B3=A8=E7=BB=93=E6=9E=9C?= =?UTF-8?q?=E6=8F=92=E5=85=A5=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/AnnotationTaskMapper.xml | 29 +++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/bonus-modules/bonus-ai/src/main/resources/mapper/AnnotationTaskMapper.xml b/bonus-modules/bonus-ai/src/main/resources/mapper/AnnotationTaskMapper.xml index fa4c1cd..a16bdb8 100644 --- a/bonus-modules/bonus-ai/src/main/resources/mapper/AnnotationTaskMapper.xml +++ b/bonus-modules/bonus-ai/src/main/resources/mapper/AnnotationTaskMapper.xml @@ -279,6 +279,8 @@ where abf.del_flag = '0' and aat.del_flag = '0' and aat.task_id = #{taskId} and adfm.file_id = #{fileId} + + UPDATE ai_annotation_task_annotator_map @@ -287,7 +289,7 @@ annotation_result = #{annotationResult}, annotation_time = sysdate(), - annotationStatus = '1', + annotation_status = '1', audit_failed_reason = #{auditFailedReason}, @@ -295,7 +297,7 @@ annotation_status = '3', - annotationStatus = #{annotationStatus}, + annotation_status = #{annotationStatus}, review_time = sysdate(), @@ -327,5 +329,28 @@ WHERE at.del_flag = '0' and ap.annotation_status IN ('1') and ap.reviewer_id = #{reviewerId} + +