feat : 매장 상세조회시, 이미지링크 추가.
This commit is contained in:
parent
7d782ef195
commit
6ce0c6acf0
@ -115,7 +115,8 @@ public class StoreService implements StoreUseCase {
|
|||||||
.rating(store.getRating())
|
.rating(store.getRating())
|
||||||
.reviewCount(store.getReviewCount())
|
.reviewCount(store.getReviewCount())
|
||||||
.status(store.getStatus())
|
.status(store.getStatus())
|
||||||
.tags(tagNameList)
|
.imageUrl(store.getImageUrl())
|
||||||
|
.tags(tagNameList)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -63,4 +63,7 @@ public class StoreDetailResponse {
|
|||||||
|
|
||||||
@Schema(description = "AI 요약 정보")
|
@Schema(description = "AI 요약 정보")
|
||||||
private String aiSummary;
|
private String aiSummary;
|
||||||
|
|
||||||
|
@Schema(description = "매장 이미지")
|
||||||
|
private String imageUrl;
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user