From c6be2e49842e83233d43a47990dc4820cb73c228 Mon Sep 17 00:00:00 2001 From: teddy Date: Thu, 22 Jan 2026 15:32:31 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B6=94=EB=A1=A0=20=EA=B2=B0=EA=B3=BC=20?= =?UTF-8?q?=EA=B5=AD=EC=9C=A0=EC=9D=B8=20=EB=B0=98=EC=98=81=EC=97=AC?= =?UTF-8?q?=EB=B6=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cd/kamcoback/inference/dto/InferenceDetailDto.java | 8 +++++++- .../repository/Inference/MapSheetLearnRepositoryImpl.java | 4 +++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/inference/dto/InferenceDetailDto.java b/src/main/java/com/kamco/cd/kamcoback/inference/dto/InferenceDetailDto.java index 3e77e757..f71fe7dc 100644 --- a/src/main/java/com/kamco/cd/kamcoback/inference/dto/InferenceDetailDto.java +++ b/src/main/java/com/kamco/cd/kamcoback/inference/dto/InferenceDetailDto.java @@ -452,6 +452,8 @@ public class InferenceDetailDto { private Integer stage; private String elapsedDuration; private String subUid; + private Boolean applyYn; + @JsonFormatDttm private ZonedDateTime applyDttm; private String bboxGeom; private String bboxCenterPoint; @@ -488,7 +490,9 @@ public class InferenceDetailDto { ZonedDateTime inferStartDttm, ZonedDateTime inferEndDttm, Integer stage, - String subUid) { + String subUid, + Boolean applyYn, + ZonedDateTime applyDttm) { this.analTitle = analTitle; this.modelVer1 = modelVer1; this.modelVer2 = modelVer2; @@ -501,6 +505,8 @@ public class InferenceDetailDto { this.inferEndDttm = inferEndDttm; this.stage = stage; this.subUid = subUid; + this.applyYn = applyYn; + this.applyDttm = applyDttm; Duration elapsed = (inferStartDttm != null && inferEndDttm != null) ? Duration.between(inferStartDttm, inferEndDttm) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/Inference/MapSheetLearnRepositoryImpl.java b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/Inference/MapSheetLearnRepositoryImpl.java index 11f7db10..8a3f9899 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/Inference/MapSheetLearnRepositoryImpl.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/Inference/MapSheetLearnRepositoryImpl.java @@ -321,7 +321,9 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto mapSheetLearnEntity.inferStartDttm, mapSheetLearnEntity.inferEndDttm, mapSheetLearnEntity.stage, - Expressions.stringTemplate("substring({0} from 1 for 8)", mapSheetLearnEntity.uid))) + Expressions.stringTemplate("substring({0} from 1 for 8)", mapSheetLearnEntity.uid), + mapSheetLearnEntity.applyYn, + mapSheetLearnEntity.applyDttm)) .from(mapSheetLearnEntity) .leftJoin(m1) .on(mapSheetLearnEntity.m1ModelUuid.eq(m1.uuid))