Skip to content

Commit

Permalink
feat: 내 모임 리스트에 선호여행 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
mummhy0811 committed Jun 5, 2024
1 parent 7973db6 commit 867dbcf
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 @@ -15,4 +15,5 @@ public class TeamServiceListResDto {
private Long teamIdx;
private Long teamMemberIdx;
private String teamMemberState;
private Long preferTripIdx;
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public List<TeamServiceListResDto> teamServiceList(Long memberIdx) {
.teamIdx(team.getTeamIdx())
.teamMemberIdx(teamMemberIdx)
.teamMemberState(teamMember.get().getTeamMemberState().name())
.preferTripIdx(team.getPreferTrip()==null? null: team.getPreferTrip().getTripIdx())
.build();
teamServiceListResDtos.add(teamServiceListResDto);
}
Expand Down

0 comments on commit 867dbcf

Please sign in to comment.