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

feat : 생협 운영시간 이름으로 조회하기 추가 #1164

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

Choon0414
Copy link
Contributor

🔥 연관 이슈

🚀 작업 내용

  1. 현재 학기의 생협 운영시간 이름으로 조회하기를 추가하였습니다.
    • /coopshop/type/{coopShopType}
    • 기존의 경로(/coopshop/{coopShopId})는 학기가 바뀔 때마다 Id를 수정해야 하는 문제가 생겨 추가하였습니다.

💬 리뷰 중점사항

@Choon0414 Choon0414 added the Team Campus 캠퍼스 팀에서 작업할 이슈입니다 label Jan 9, 2025
@Choon0414 Choon0414 self-assigned this Jan 9, 2025
@github-actions github-actions bot added the 기능 새로운 기능을 개발합니다. label Jan 9, 2025
Copy link

github-actions bot commented Jan 9, 2025

Unit Test Results

354 tests   353 ✔️  1m 36s ⏱️
  45 suites      1 💤
  45 files        0

Results for commit a932cb9.

Copy link
Contributor

@kih1015 kih1015 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다.

코멘트 하나만 확인해주세요!

Comment on lines +36 to +42
@GetMapping("/type/{coopShopType}")
public ResponseEntity<CoopShopResponse> getCoopShopByType(
@PathVariable CoopShopType coopShopType
) {
CoopShopResponse coopShop = coopShopService.getCoopShopByType(coopShopType);
return ResponseEntity.ok(coopShop);
}
Copy link
Contributor

@kih1015 kih1015 Jan 9, 2025

Choose a reason for hiding this comment

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

A

전체 생협매장에서 타입을 기준으로 조회하는 기능으로 보입니다.
새로 api를 추가하는 방식도 좋지만
아래와 같이 기존의 get /coopshop에서 required = false로 쿼리 스트링을 추가하는 것은 어떻게 생각하시나요?
get /coopshop?coopShopType=CAFTERIA

추가) 그런데 이렇게 하면 response 형식이 달라지긴 하네요 ㅠ

Copy link
Contributor

@dradnats1012 dradnats1012 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다~

CAMPUS2("2캠퍼스"),
WELFARE_CVS("복지관 편의점"),
CHAMBIT_CVS("참빛관 편의점"),
CVS("복지관 참빛관 편의점"),
Copy link
Contributor

Choose a reason for hiding this comment

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

요건 어쩌다 합쳐진건가요?

@Choon0414 Choon0414 marked this pull request as draft January 10, 2025 06:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team Campus 캠퍼스 팀에서 작업할 이슈입니다 기능 새로운 기능을 개발합니다.
Projects
Status: In progress
Development

Successfully merging this pull request may close these issues.

생협 현재 학기 운영시간 이름으로 조회 구현하기
3 participants