feat : 매장 상세조회시, 이미지링크 추가.

This commit is contained in:
lsh9672 2025-06-17 18:05:08 +09:00
parent 7d782ef195
commit 6ce0c6acf0
2 changed files with 5 additions and 1 deletions

View File

@ -115,7 +115,8 @@ public class StoreService implements StoreUseCase {
.rating(store.getRating())
.reviewCount(store.getReviewCount())
.status(store.getStatus())
.tags(tagNameList)
.imageUrl(store.getImageUrl())
.tags(tagNameList)
.build();
}

View File

@ -63,4 +63,7 @@ public class StoreDetailResponse {
@Schema(description = "AI 요약 정보")
private String aiSummary;
@Schema(description = "매장 이미지")
private String imageUrl;
}