From 73b0a39826ea2b99b5d80cf1534cbc69cfd8a235 Mon Sep 17 00:00:00 2001 From: "gayoun.park" Date: Thu, 23 Jul 2026 16:17:39 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=80=ED=99=94=EC=A7=80=EB=8F=84=20api=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../changedetection/ChangeDetectionRepositoryImpl.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/changedetection/ChangeDetectionRepositoryImpl.java b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/changedetection/ChangeDetectionRepositoryImpl.java index 6aa6e970..42c17bc8 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/changedetection/ChangeDetectionRepositoryImpl.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/changedetection/ChangeDetectionRepositoryImpl.java @@ -241,10 +241,8 @@ public class ChangeDetectionRepositoryImpl extends QuerydslRepositorySupport mapSheetAnalDataInferenceGeomEntity.uuid, mapSheetAnalDataInferenceGeomEntity.resultUid)) .from(mapSheetAnalDataInferenceGeomEntity) - .innerJoin(mapSheetAnalDataInferenceEntity) - .on(mapSheetAnalDataInferenceGeomEntity.dataUid.eq(mapSheetAnalDataInferenceEntity.id)) .innerJoin(mapSheetAnalInferenceEntity) - .on(mapSheetAnalInferenceEntity.id.eq(mapSheetAnalDataInferenceEntity.analUid)) + .on(mapSheetAnalInferenceEntity.learnId.eq(mapSheetAnalDataInferenceGeomEntity.learnId)) .where( mapSheetAnalInferenceEntity.uuid.eq(uuid), mapScaleTypeAnalDataSearchExpression(scale, mapSheetNum)) @@ -306,10 +304,8 @@ public class ChangeDetectionRepositoryImpl extends QuerydslRepositorySupport mapSheetAnalDataInferenceGeomEntity.geoUid, mapSheetAnalDataInferenceGeomEntity.classAfterCd.toUpperCase()))) .from(mapSheetAnalDataInferenceGeomEntity) - .innerJoin(mapSheetAnalDataInferenceEntity) - .on(mapSheetAnalDataInferenceGeomEntity.dataUid.eq(mapSheetAnalDataInferenceEntity.id)) .innerJoin(mapSheetAnalInferenceEntity) - .on(mapSheetAnalInferenceEntity.id.eq(mapSheetAnalDataInferenceEntity.analUid)) + .on(mapSheetAnalInferenceEntity.learnId.eq(mapSheetAnalDataInferenceGeomEntity.learnId)) .where( mapSheetAnalInferenceEntity.uuid.eq(uuid), mapScaleTypeAnalDataSearchExpression(scale, mapSheetNum))