generated from Chuseok22/chuseok22-github-template
-
Notifications
You must be signed in to change notification settings - Fork 0
20260113 #66 rank 기능 구현 #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
The head ref may contain hidden characters: "20260113_#66_rank_\uAE30\uB2A5_\uAD6C\uD604"
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d55ac07
rank_기능_구현 : feat : {랭크 단순 기능 구현} https://github.com/CampusTable/camp…
kjh0718 9699b0a
rank_기능_구현 : feat : {식당별 top3 나오게 구현} https://github.com/CampusTable/…
kjh0718 3ee9be1
rank_기능_구현 : feat : {key 값에 콜론 추가} https://github.com/CampusTable/cam…
kjh0718 2660e50
rank_기능_구현 : feat : {식당 없을때 예외 처리 + docs} https://github.com/CampusTa…
kjh0718 f153f03
rank_기능_구현 : feat : {메뉴 생성시 redis 랭킹 0점 초기화} https://github.com/Campu…
kjh0718 c0b49df
rank_기능_구현 : feat : {coderabbit 수정} https://github.com/CampusTable/ca…
kjh0718 f8698ab
rank_기능_구현 : feat : {coderabbit 수정 - redis 데이터 변환 예외 처리} https://gith…
kjh0718 f50d8b5
Merge branch 'test' into 20260113_#66_rank_기능_구현
kjh0718 f580fa8
rank_기능_구현 : feat : {이미지 업로드 + rank} https://github.com/CampusTable/c…
kjh0718 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/com/campustable/be/domain/menu/dto/TopMenuResponse.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| package com.campustable.be.domain.menu.dto; | ||
|
|
||
| import com.campustable.be.domain.menu.entity.Menu; | ||
| import lombok.Builder; | ||
| import lombok.Getter; | ||
|
|
||
| @Getter | ||
| @Builder | ||
| public class TopMenuResponse { | ||
|
|
||
| private Long rank; | ||
| private MenuResponse menu; | ||
|
|
||
| public static TopMenuResponse of(Long rank, Menu menu) { | ||
| return TopMenuResponse.builder() | ||
| .rank(rank) | ||
| .menu(MenuResponse.from(menu)) | ||
| .build(); | ||
| } | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.