feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 260f9ee2c1 - Show all commits

View File

@ -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<SimulationRoofResponse> roofList = estimateMapper.selectSimulationEstimateRoofList(estimateRequest);

View File

@ -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<SimulationRoofResponse> roofList;