Skip to content
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

[Feature] 잔여 좌석 조회 API #53

Closed
wants to merge 5 commits into from

Conversation

pollra
Copy link
Collaborator

@pollra pollra commented Sep 2, 2023

관련된 이슈 번호

변경사항 (할 일)

  • 좌석 설계
  • 좌석 잔여 갯수 조회 api 구현

추가 점검사항

  • test case

@pollra pollra added the 3 3h label Sep 2, 2023
@pollra pollra added this to the sprint #8-4 milestone Sep 2, 2023
@pollra pollra self-assigned this Sep 2, 2023
@f-lab-lion f-lab-lion removed this from the sprint #8-4 milestone Sep 2, 2023
@pollra pollra force-pushed the feat/#48-Remaining-seat-list branch from 14b270d to d81ef71 Compare September 2, 2023 13:41
@github-actions
Copy link

github-actions bot commented Sep 2, 2023

Test Results

0 tests   - 21   0 ✔️  - 18   0s ⏱️ -1s
0 suites  - 10   0 💤  -   3 
0 files    - 10   0 ±  0 

Results for commit 3b5c0b7. ± Comparison against base commit 4814f13.

♻️ This comment has been updated with latest results.

Comment on lines 29 to 37
public ShowRepositoryImpl(Map<Long, SeatGradePersist> seatGradeStore) {
this.seatGradeStore = seatGradeStore;
this.showIdIndex = new ConcurrentHashMap<>();
seatGradeStore.forEach((seatGradeId, seatGradePersist) -> {
List<SeatGradePersist> indexRecode = showIdIndex.getOrDefault(seatGradePersist.showId(), new ArrayList<>());
indexRecode.add(seatGradePersist);
showIdIndex.put(seatGradePersist.showId(), indexRecode);
});
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jpa가 적용된 브랜치가 merge 되었습니다.
이점을 반영해도 좋고, 이대로 두고 변환작업을 따로해도 괜찮습니다.

@pollra
Copy link
Collaborator Author

pollra commented Sep 12, 2023

#58, #59, #60 으로 작업이 나뉘어 해당 브랜치를 닫습니다.

@pollra pollra closed this Sep 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3 3h
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants