Skip to content

Commit

Permalink
[FIX] 내 지원서 조회 api 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wken5577 committed Apr 6, 2024
1 parent a6ff2f3 commit 10c2c9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ public class MyApplicationDetailResDto {
private LocalDateTime endTime;
private String title;
private String content;
private List<FormResDto> from;
private List<FormResDto> 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());
}
Expand Down

0 comments on commit 10c2c9f

Please sign in to comment.