Conversation
- BaseEntity 추가 (createdAt, updatedAt, @EnableJpaAuditing) - 엔티티 구현: Member, Food, Term, MemberFood, MemberTerm, Location, Store, Mission, MemberMission, Review, Reply, ReviewPhoto - Repository 구현: JpaRepository 확장, 페이징 쿼리(@query) 추가 - 서비스 구현: MemberService, MissionService, ReviewService - API 4종 구현: POST /api/v1/stores/{storeId}/reviews (리뷰 작성) GET /api/v1/members/{id} (마이 페이지) GET /api/v1/members/{id}/missions (내 미션 목록, 페이징) GET /api/v1/missions (홈 화면 지역별 미션 목록, 페이징) - Swagger @operation 어노테이션 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
CokaNuri
reviewed
May 18, 2026
| @RequestParam(defaultValue = "0") Integer page | ||
| ) { | ||
| Page<Mission> missionPage = missionService.getAvailableMissions(locationId, memberId, page); | ||
| return ApiResponse.onSuccess(MissionSuccessCode.GET_MISSIONS, MissionConverter.toMissionPreviewListRes(missionPage)); |
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
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.
✏️ 작업 내용
#️⃣ 연관된 이슈
closes #93
💡 함께 공유하고 싶은 부분
🤔 질문
✅ 워크북 체크리스트
✅ 컨벤션 체크리스트
📌 주안점