From bd2b3ba2cfcb543d635e4c918fa998088b2a0334 Mon Sep 17 00:00:00 2001 From: cabbage16 Date: Thu, 19 Sep 2024 00:09:15 +0900 Subject: [PATCH] =?UTF-8?q?perf:=20=EC=9B=90=EC=84=9C=20=EC=A1=B0=ED=9A=8C?= =?UTF-8?q?=EB=B0=8F=20=EA=B2=B0=EA=B3=BC=20=EC=A1=B0=ED=9A=8C=EC=8B=9C=20?= =?UTF-8?q?=EC=A0=84=ED=98=95=EB=B3=80=EA=B2=BD=EC=97=AC=EB=B6=80=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C=20-=20=EC=96=B4=EB=93=9C=EB=AF=BC=EC=9D=B4?= =?UTF-8?q?=20=EC=9B=90=EC=84=9C=EB=A5=BC=20=EC=A0=84=EC=B2=B4=20=EC=A1=B0?= =?UTF-8?q?=ED=9A=8C=ED=95=A0=20=EB=95=8C=20=ED=95=B4=EB=8B=B9=20=EC=A7=80?= =?UTF-8?q?=EC=9B=90=EC=9E=90=EC=9D=98=20=EC=A0=84=ED=98=95=EC=9D=B4=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EB=90=98=EC=97=88=EB=8A=94=EC=A7=80=20?= =?UTF-8?q?=EC=97=AC=EB=B6=80=EB=A5=BC=20=ED=91=9C=EC=8B=9C=ED=95=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95=ED=96=88=EC=96=B4?= =?UTF-8?q?=EC=9A=94.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../maru/presentation/form/dto/response/FormSimpleResponse.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/bamdoliro/maru/presentation/form/dto/response/FormSimpleResponse.java b/src/main/java/com/bamdoliro/maru/presentation/form/dto/response/FormSimpleResponse.java index 4f8ac86b..090117da 100644 --- a/src/main/java/com/bamdoliro/maru/presentation/form/dto/response/FormSimpleResponse.java +++ b/src/main/java/com/bamdoliro/maru/presentation/form/dto/response/FormSimpleResponse.java @@ -22,6 +22,7 @@ public class FormSimpleResponse { private String school; private FormStatus status; private FormType type; + private Boolean isChangedToRegular; private Double totalScore; private Boolean hasDocument; private Boolean firstRoundPassed; @@ -36,6 +37,7 @@ public FormSimpleResponse(Form form) { this.school = form.getEducation().getSchool().getName(); this.status = form.getStatus(); this.type = form.getType(); + this.isChangedToRegular = form.getChangedToRegular(); this.totalScore = form.getScore().getTotalScore(); this.hasDocument = form.isReceived(); this.firstRoundPassed = form.isFirstPassed();