From 0bbead4fc5392839d4658b205eee81cd8ecb7cf6 Mon Sep 17 00:00:00 2001 From: "DESKTOP-6E8S9S5\\LEE" Date: Thu, 4 Jun 2026 17:27:35 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EB=B0=9C=EC=A0=84=EC=8B=9C=EB=AE=AC?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=85=98=20=EB=AC=BC=EA=B1=B4=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EC=83=81=EC=84=B8=20API=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/interplug/qcast/biz/estimate/dto/EstimateResponse.java | 3 +++ src/main/resources/mappers/estimate/estimateMapper.xml | 1 + 2 files changed, 4 insertions(+) diff --git a/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java b/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java index f6264ba6..d2a35cd7 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java @@ -197,6 +197,9 @@ public class EstimateResponse { @Schema(description = "지역명") private String areaName; + @Schema(description = "계약조건") + private String conType; + @Schema(description = "물건정보 비고") private String objectRemarks; diff --git a/src/main/resources/mappers/estimate/estimateMapper.xml b/src/main/resources/mappers/estimate/estimateMapper.xml index 8d08a4a1..d7f94d6e 100644 --- a/src/main/resources/mappers/estimate/estimateMapper.xml +++ b/src/main/resources/mappers/estimate/estimateMapper.xml @@ -64,6 +64,7 @@ , B.SALE_STORE_ID AS SAP_SALE_STORE_ID , B.SAP_SALES_STORE_CD , OI.AREA_ID + , OI.CON_TYPE , ISNULL(OI.COLD_REGION_FLG, '0') AS COLD_REGION_FLG , ISNULL(OI.SALT_AREA_FLG, '0') AS SALT_AREA_FLG , SS.FIRST_AGENT_ID -- 2.47.2 From 2d4d04ed118df1845f895eb1524e795a127ed66d Mon Sep 17 00:00:00 2001 From: "DESKTOP-6E8S9S5\\LEE" Date: Thu, 4 Jun 2026 17:50:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=B0=9C=EC=A0=84=EC=8B=9C=EB=AE=AC?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=85=98=20=EB=AC=BC=EA=B1=B4=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EC=83=81=EC=84=B8=20API=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/interplug/qcast/biz/estimate/EstimateService.java | 4 +++- .../qcast/biz/estimate/dto/SimulationEstimateResponse.java | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java b/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java index 66a2d928..050c290b 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java @@ -3237,10 +3237,12 @@ public class EstimateService { throw new QcastException(ErrorCode.NOT_FOUND, message.getMessage("common.message.no.data")); } else { - // 지역코드 셋팅 + // 물건정보 셋팅 response.setObjectNo(estimateRequest.getObjectNo()); response.setPlanNo(estimateRequest.getPlanNo()); + response.setObjectName(estimateRequest.getObjectName()); response.setAreaId(estimateResponse.getAreaId()); + response.setConType(estimateResponse.getConType()); // 지붕면 정보 목록 조회 List roofList = estimateMapper.selectSimulationEstimateRoofList(estimateRequest); diff --git a/src/main/java/com/interplug/qcast/biz/estimate/dto/SimulationEstimateResponse.java b/src/main/java/com/interplug/qcast/biz/estimate/dto/SimulationEstimateResponse.java index bad984cb..7379e76e 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/dto/SimulationEstimateResponse.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/dto/SimulationEstimateResponse.java @@ -10,12 +10,18 @@ public class SimulationEstimateResponse { @Schema(description = "물건번호") private String objectNo; + @Schema(description = "안건명") + private String objectName; + @Schema(description = "플랜번호") private String planNo; @Schema(description = "지역코드") private String areaId; + @Schema(description = "계약조건") + private String conType; + @Schema(description = "지붕면 정보 목록") List roofList; -- 2.47.2