From 6ff784d7d60477e9e401aadf23462c79820261a2 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 4 Feb 2026 10:37:47 +0900 Subject: [PATCH] =?UTF-8?q?AS-IS=20=EA=B0=9C=EB=B0=9C=EC=9E=90=ED=8F=AC?= =?UTF-8?q?=ED=83=88=EC=97=90=EC=84=9C=20=EC=93=B0=EC=9D=B4=EB=8D=98=20ID?= =?UTF-8?q?=20=ED=95=84=EB=93=9C=20=EA=B0=92=20=EC=82=AD=EC=A0=9C(OBP=20?= =?UTF-8?q?=EB=94=94=EB=B9=84=20=ED=95=84=EB=93=9C=20=ED=98=95=EC=8B=9D?= =?UTF-8?q?=EA=B3=BC=20=EB=A7=9E=EC=A7=80=20=EC=95=8A=EC=9D=8C)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eactive/eai/rms/onl/apim/obp/ObpGwMetricAfterDTO.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/eactive/eai/rms/onl/apim/obp/ObpGwMetricAfterDTO.java b/src/main/java/com/eactive/eai/rms/onl/apim/obp/ObpGwMetricAfterDTO.java index af7feb1..6ea4219 100644 --- a/src/main/java/com/eactive/eai/rms/onl/apim/obp/ObpGwMetricAfterDTO.java +++ b/src/main/java/com/eactive/eai/rms/onl/apim/obp/ObpGwMetricAfterDTO.java @@ -117,6 +117,12 @@ public class ObpGwMetricAfterDTO { dto.setTimeslice(formatTimeslice(entity.getTimeslice())); dto.setAttemptedCount(entity.getAttemptedCount()); dto.setCompletedCount(entity.getCompletedCount()); + + + // 260224 - AS-IS 개발자포탈에서 쓰이던 ID 필드 값 삭제(OBP 디비 필드 형식과 맞지 않음) + dto.setOrgId(null); + dto.setAppId(null); + return dto; }