-
Notifications
You must be signed in to change notification settings - Fork 3
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
fix: 회원이 가지고 있는 만료되지 않은 쿠폰에 대한 브랜드 리스트 조회 API 개발 #17
Merged
Conversation
This file contains 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
[before] dto/member [after] dto/auth
- Http 메소드 + 도메인 + req/resp 형식으로 변경
- findByMemberIdOrderByStampCountAndCreatedDate 는 특정 회원이 가지고 있는 쿠폰을 1. 도장 개수 많은 순, 2. 생성시간이 빠른 순으로 조회. - findByMemberIdOrderByCreatedDateAndStampCount 는 특정 회원이 가지고 있는 쿠폰을 1. 생성시간이 빠른 순, 2. 도장 개수가 많은 순으로 조회. - findByMemberIdOrderByBrandName 는 특정 회원이 가지고 있는 쿠폰을 브랜드 이름으로 조회
- 회원이 소유한 쿠폰의 브랜드 리스트 조회 API
- Service 계층 개발
- Controller 계층 개발
… into feature/member
… into feature/member # Conflicts: # src/main/java/com/example/couphoneserver/repository/CouponItemRepository.java
- { INACTIVE, ACTIVE }
코드 확인했습니다!! |
limsubinn
reviewed
Aug 3, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이미 있는 GetBrandResponse에 쿠폰 상태, 만료 시간만 추가해서 이용해도 될 것 같아요..!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오! 그러네요. 저녁에 반영해보도록 하겟습니다,,,
limsubinn
pushed a commit
that referenced
this pull request
Aug 5, 2023
fix: 회원이 가지고 있는 만료되지 않은 쿠폰에 대한 브랜드 리스트 조회 API 개발
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Member API
[기능] 특정 회원이 가지고 있는 쿠폰들을 조회한 다음, 해당 쿠폰들의 브랜드 목록을 반환합니다.
[정렬 조건]
[보완 사항]
sort = 1 이면 스탬프 많은 순, 쿠폰 생성 시간이 이른 순으로 브랜드 목록을 정렬하여 반환합니다.
sort = 2 이면 쿠폰 생성 시간이 이른 순, 스탬프 많은 순으로 브랜드 목록을 정렬하여 반환합니다.
sort = 3 이면 브랜드 이름 순으로 정렬하여 브랜드 목록을 반환합니다.
🕝기획에서는 만료 시간을 기준으로 정렬해야한다고 했지만 생성 시간을 기준으로 정렬한 이유
TODO
순서로 진행해볼게요!