From cfa4e3832efbc43f6145eea47a211a8007405c07 Mon Sep 17 00:00:00 2001 From: thkim Date: Tue, 17 Mar 2026 15:08:59 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B2=80=EC=88=98=EC=8B=9C=EC=8A=A4?= =?UTF-8?q?=ED=85=9C=20>=20=EA=B2=80=EC=88=98=EB=93=B1=EB=A1=9D=EB=8C=80?= =?UTF-8?q?=EA=B8=B0=20=EB=AA=A9=EB=A1=9D=EC=97=90=EC=84=9C=20=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=20=EC=8B=9C,=20=EB=B6=88=EC=97=B0=EC=86=8D=EB=A9=B4?= =?UTF-8?q?=20=EC=A0=95=EB=B3=B4(TEMP=5FDSF)=20PK=20=EC=A4=91=EB=B3=B5=20?= =?UTF-8?q?=EC=9C=A0=ED=9A=A8=EC=84=B1=20=EC=B2=B4=ED=81=AC=20=EC=84=A4?= =?UTF-8?q?=EB=AA=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/geoinfo/com/WebConfirm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/geoinfo/com/WebConfirm.java b/src/main/java/geoinfo/com/WebConfirm.java index 21ce71c9..78ee9ac7 100644 --- a/src/main/java/geoinfo/com/WebConfirm.java +++ b/src/main/java/geoinfo/com/WebConfirm.java @@ -468,7 +468,7 @@ public class WebConfirm String fract = isnull(rs.getString("DSF_FRACTURING"), "미입력"); int count = rs.getInt("COUNT"); - errorMessages.append("- " + holeCode + " 시추공의 불연속면 데이터(심도:" + dFrom + "~" + dTo + "m, 구성:" + decomp + ", 강도:" + strength + ", 간격:" + fract + ")가 " + count + "개 중복됨.\\n"); + errorMessages.append("- " + holeCode + " 시추공의 DSF(불연속면) 데이터 (심도:" + dFrom + "~" + dTo + "m, 구성:" + decomp + ", 강도:" + strength + ", 간격:" + fract + ")가 " + count + "개 중복됨.\\n"); } if (errorMessages.length() > 0) { @@ -482,7 +482,7 @@ public class WebConfirm } catch (SQLException e) { logger.error("DSF validation check error", e); result.put("success", false); - result.put("errorMessage", "불연속면 유효성 검사 중 데이터베이스 오류가 발생했습니다: " + e.getMessage()); + result.put("errorMessage", "DSF(불연속면) 유효성 검사 중 데이터베이스 오류가 발생했습니다: " + e.getMessage()); } finally { try { if (rs != null) rs.close();