From c1b6061e3e418c242f7ca190eee6d2ee57d4fc4f Mon Sep 17 00:00:00 2001 From: "gayoun.park" Date: Thu, 5 Feb 2026 13:55:42 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EB=B2=A8=EB=A7=81=20=ED=95=A0?= =?UTF-8?q?=EB=8B=B9=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../repository/label/LabelAllocateRepositoryImpl.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/label/LabelAllocateRepositoryImpl.java b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/label/LabelAllocateRepositoryImpl.java index c0f045a7..60120b9e 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/label/LabelAllocateRepositoryImpl.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/label/LabelAllocateRepositoryImpl.java @@ -126,8 +126,8 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto """ insert into tb_labeling_assignment (assignment_uid, inference_geom_uid, worker_uid, - work_state, assign_group_id, anal_uid, pnu) - values (?, ?, ?, ?, ?, ?, ?) + work_state, assign_group_id, anal_uid) + values (?, ?, ?, ?, ?, ?) """; try (PreparedStatement ps = connection.prepareStatement(sql)) { @@ -140,7 +140,6 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto ps.setString(4, LabelState.ASSIGNED.getId()); ps.setString(5, String.valueOf(info.getMapSheetNum())); ps.setLong(6, analEntity.getId()); - ps.setLong(7, info.getPnu()); ps.addBatch(); batchSize++;