Skip to content

Commit

Permalink
보드게임 DTO 이름 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
enbraining committed Jan 1, 2024
1 parent 812ffa7 commit 241e1af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public ToBoardgameDto toDto(Boardgame boardgame){
member.getGrade(),
member.getClassroom(),
member.getNumber(),
member.getName(),
member.getId().toString()
))
);
Expand All @@ -49,6 +50,7 @@ public ToBoardgameDto toDto(Boardgame boardgame){
creator.getGrade(),
creator.getClassroom(),
creator.getNumber(),
creator.getName(),
creator.getId().toString()
),
players);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ public class NumberNameWithId {

private Long number;

private String name;

private String id;
}

0 comments on commit 241e1af

Please sign in to comment.