Skip to content

Commit

Permalink
[Add] add answer at get application child response dto
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightieey committed Sep 16, 2023
1 parent c4cdfb6 commit 76c0da8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
public class ApplicationChildListResponseDto {
private Long id;
private String question;
private String answer;
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public ApplicationChildListResponseDto toResponseDto(ApplicationChild applicatio
ApplicationChildListResponseDto.ApplicationChildListResponseDtoBuilder cLetterResponseDto = ApplicationChildListResponseDto.builder();
cLetterResponseDto.id(applicationChild.getId());
cLetterResponseDto.question(applicationChild.getQuestion());
cLetterResponseDto.answer(applicationChild.getAnswer());

return cLetterResponseDto.build();
}
Expand Down

0 comments on commit 76c0da8

Please sign in to comment.