Skip to content

Commit

Permalink
[#249] fix: ApplyRes 응답 데이터 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yumzen committed Sep 24, 2024
1 parent 052f728 commit c4e91cd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public record ApplyRes(

LocalDate finishedAt,

String teamName,
String title,

String leaderName,

Expand All @@ -74,7 +74,7 @@ public static ApplyRes of(Apply apply) {
return ApplyRes.builder()
.id(apply.getId())
.teamId(apply.getTeam().getId())
.teamName(apply.getTeam().getTitle())
.title(apply.getTeam().getTitle())
.applicantId(apply.getMember().getId())
.applicantName(apply.getMember().getName())
.applicantPhone(apply.getMember().getPhone())
Expand Down

0 comments on commit c4e91cd

Please sign in to comment.