Skip to content

Commit

Permalink
[ fix ] Get store info running time
Browse files Browse the repository at this point in the history
  • Loading branch information
Minuooooo committed Aug 24, 2023
1 parent c297080 commit 5a23055
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class GetStoreInfoResponseDto { // 스토어 상세 정보
private String imageUrl;
private String location;
private String phone;
private String runningTime;
private Boolean isBookmarked;

public static GetStoreInfoResponseDto from(Store store, boolean isBookmarked) {
Expand All @@ -29,6 +30,7 @@ public static GetStoreInfoResponseDto from(Store store, boolean isBookmarked) {
.imageUrl(store.getImageUrl())
.location(store.getLocation())
.phone(store.getPhone())
.runningTime(store.getRunningTime())
.isBookmarked(isBookmarked)
.build();
}
Expand Down

0 comments on commit 5a23055

Please sign in to comment.