-
Notifications
You must be signed in to change notification settings - Fork 1
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] 상품 상세 조회 기능 구현 #54
Conversation
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.
좋습니다.
import com.teamA.hicardi.domain.item.entity.ItemImage; | ||
|
||
public interface ItemImageRepository extends JpaRepository<ItemImage, Long> { | ||
List<ItemImage> findItemImagesByItemId(Long itemId); |
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.
findByItemId로 바꿔도 괜찮 ㅎㅎ 상관없지만~
@Operation(summary = "상품 상세 조회", description = "상품을 조회합니다.", | ||
security = { @SecurityRequirement(name = "bearer-key") }, | ||
responses = { | ||
@ApiResponse(responseCode = "200", description = "상품 상세 조회 성공") |
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.
ErrorResponse도 스웨거 명세에 넣으면 좋을 듯함
💡 연관된 이슈
close #53
📝 작업 내용
상품 상세 조회 기능 구현
💬 리뷰 요구 사항
리뷰 부탁드립니다.