Skip to content

Commit

Permalink
[FIX] lastCheck update 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 13, 2024
1 parent d008ad2 commit 5a4d58b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ public void updateApplicationPage4(ApplicationPage4Request request) {
this.availableInterviewTime1 = availableInterviewTime1;
this.availableInterviewTime2 = availableInterviewTime2;
this.availableInterviewTime3 = availableInterviewTime3;
this.lastCheck = request.lastCheck();
}

public void completeApplication() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

@Schema(description = "지원서 페이지 4 요청")
public record ApplicationPage4Request(
@Schema(description = "최종 제출 여부", example = "true")
boolean isSubmit,
@Schema(description = "면접 가능 날짜 첫번째", example = "[0,0,0,0,0,0,0,0,0,0]")
List<Integer> firstDay,
@Schema(description = "면접 가능 날짜 두번쨰", example = "[0,0,0,0,0,0,0,0,0,0]")
List<Integer> secondDay,
@Schema(description = "면접 가능 날짜 세번쨰", example = "[0,0,0,0,0,0,0,0,0,0]")
List<Integer> thirdDay
List<Integer> thirdDay,
@Schema(description = "최종 제출 여부", example = "true")
boolean lastCheck

) {

Expand Down

0 comments on commit 5a4d58b

Please sign in to comment.