feat : 내 매장 목록 조회 반환값 추가(imgurl)
This commit is contained in:
parent
1a1f3b787e
commit
569404a73d
@ -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());
|
||||
|
||||
@ -39,4 +39,6 @@ public class MyStoreListResponse {
|
||||
|
||||
@Schema(description = "운영시간", example = "월-금 09:00-21:00")
|
||||
private String operatingHours;
|
||||
@Schema(description = "매장 이미지")
|
||||
private String imageUrl;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user