Skip to content

Commit

Permalink
perf: 원서 조회및 결과 조회시 전형변경여부 표시 - 어드민이 원서를 전체 조회할 때 해당 지원자의 전형이 변경되었는지 …
Browse files Browse the repository at this point in the history
…여부를 표시하도록 수정했어요.
  • Loading branch information
cabbage16 committed Sep 18, 2024
1 parent 8748b2d commit bd2b3ba
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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();
Expand Down

0 comments on commit bd2b3ba

Please sign in to comment.