From 0b57a90d51549d4ae8c808bd818a39f7ade0a71b Mon Sep 17 00:00:00 2001 From: "DESKTOP-6E8S9S5\\LEE" Date: Fri, 15 May 2026 13:35:29 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=8C=EB=9E=9C=EC=A0=95=EB=B3=B4=20?= =?UTF-8?q?=EC=97=91=EC=85=80=EB=8B=A4=EC=9A=B4=EB=A1=9C=EB=93=9C=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90=EB=AA=85=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../interplug/qcast/biz/excelDown/dto/QuotPlanResponse.java | 4 ++++ src/main/resources/mappers/excelDown/excelDownMapper.xml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/main/java/com/interplug/qcast/biz/excelDown/dto/QuotPlanResponse.java b/src/main/java/com/interplug/qcast/biz/excelDown/dto/QuotPlanResponse.java index d409845c..e4098f0b 100644 --- a/src/main/java/com/interplug/qcast/biz/excelDown/dto/QuotPlanResponse.java +++ b/src/main/java/com/interplug/qcast/biz/excelDown/dto/QuotPlanResponse.java @@ -53,6 +53,8 @@ public class QuotPlanResponse { private String saleStoreId; @Schema(description = "최종갱신자 最終更新者") private String lastEditUser; + @Schema(description = "최종갱신자명 最終更新者名") + private String lastEditUserName; @Schema(description = "지붕종류 屋根種類 ") private String rofTyp; @Schema(description = "지붕재 屋根材") @@ -121,4 +123,6 @@ public class QuotPlanResponse { private String createDatetime; @Schema(description = "플랜정보 등록자 プラン情報登録者") private String createUser; + @Schema(description = "플랜정보 등록자명 プラン情報登録者名") + private String createUserName; } \ No newline at end of file diff --git a/src/main/resources/mappers/excelDown/excelDownMapper.xml b/src/main/resources/mappers/excelDown/excelDownMapper.xml index 76b832cf..143d2ca2 100644 --- a/src/main/resources/mappers/excelDown/excelDownMapper.xml +++ b/src/main/resources/mappers/excelDown/excelDownMapper.xml @@ -202,6 +202,8 @@ , P.LAST_EDIT_USER , PI.CREATE_DATETIME , PI.CREATE_USER + , (SELECT NAME FROM M_USER WHERE USER_ID = P.LAST_EDIT_USER) AS LAST_EDIT_USER_NAME + , (SELECT NAME FROM M_USER WHERE USER_ID = PI.CREATE_USER) AS CREATE_USER_NAME FROM T_OBJECT O WITH (NOLOCK) LEFT OUTER JOIN T_OBJECT_INFO OI WITH (NOLOCK) ON O.OBJECT_NO = OI.OBJECT_NO