Skip to content

Commit

Permalink
feat: 회원 랭킹 조회 API에 memberId 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
shkisme committed Feb 27, 2024
1 parent d043566 commit 1add667
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
@AllArgsConstructor(access = PRIVATE)
public class MemberPointRankResponse {

private Long memberId;
private String realName;
private String generation;
private Integer point;
private String thumbnailPath;

public static MemberPointRankResponse from(Member member) {
return MemberPointRankResponse.builder()
.memberId(member.getId())
.realName(member.getRealName())
.generation(member.getGeneration())
.point(member.getPoint())
Expand Down

0 comments on commit 1add667

Please sign in to comment.