feat : 내 매장 목록 조회 반환값 추가(imgurl)

This commit is contained in:
lsh9672 2025-06-18 09:29:35 +09:00
parent 1a1f3b787e
commit 569404a73d
2 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,7 @@ public class StoreService implements StoreUseCase {
.rating(store.getRating())
.reviewCount(store.getReviewCount())
.status("운영중")
.imageUrl(store.getImageUrl())
.operatingHours(store.getOperatingHours())
.build())
.collect(Collectors.toList());

View File

@ -39,4 +39,6 @@ public class MyStoreListResponse {
@Schema(description = "운영시간", example = "월-금 09:00-21:00")
private String operatingHours;
@Schema(description = "매장 이미지")
private String imageUrl;
}