Skip to content

Commit

Permalink
Merge pull request #484 from pknu-wap/develop
Browse files Browse the repository at this point in the history
fix: 미니게임 랭킹 stage Integer로 변경
  • Loading branch information
JONG-KYEONG authored Sep 4, 2024
2 parents afedf35 + 369c7af commit f3b9f59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ public class MiniGameRanking {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String nickname;
private String stage;
private Integer stage;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
public class MiniGameRankingDto {
Integer rank;
String nickname;
String stage;
Integer stage;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
@Getter
public class MiniGameRankingRequest {
String nickname;
String stage;
Integer stage;
}

0 comments on commit f3b9f59

Please sign in to comment.