From 10c2c9f0a692da778f79655b2c5c3a419b8b9eb5 Mon Sep 17 00:00:00 2001 From: wken5577 Date: Sat, 6 Apr 2024 21:04:40 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]=20=EB=82=B4=20=EC=A7=80=EC=9B=90=EC=84=9C?= =?UTF-8?q?=20=EC=A1=B0=ED=9A=8C=20api=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user/controller/response/MyApplicationDetailResDto.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gg-recruit-api/src/main/java/gg/recruit/api/user/controller/response/MyApplicationDetailResDto.java b/gg-recruit-api/src/main/java/gg/recruit/api/user/controller/response/MyApplicationDetailResDto.java index f1b164b36..6860557d1 100644 --- a/gg-recruit-api/src/main/java/gg/recruit/api/user/controller/response/MyApplicationDetailResDto.java +++ b/gg-recruit-api/src/main/java/gg/recruit/api/user/controller/response/MyApplicationDetailResDto.java @@ -16,14 +16,14 @@ public class MyApplicationDetailResDto { private LocalDateTime endTime; private String title; private String content; - private List from; + private List form; public MyApplicationDetailResDto(ApplicationWithAnswerSvcDto applicationWithAnswerSvcDto) { this.applicationId = applicationWithAnswerSvcDto.getApplicationId(); this.endTime = applicationWithAnswerSvcDto.getEndTime(); this.title = applicationWithAnswerSvcDto.getTitle(); this.content = applicationWithAnswerSvcDto.getContent(); - this.from = applicationWithAnswerSvcDto.getForm().stream() + this.form = applicationWithAnswerSvcDto.getForm().stream() .map(FormResDto::new) .collect(toList()); }