diff --git a/src/main/java/com/mey/backend/domain/place/dto/PlaceSimpleResponseDto.java b/src/main/java/com/mey/backend/domain/place/dto/PlaceSimpleResponseDto.java index 1a6684d..20a7ccf 100644 --- a/src/main/java/com/mey/backend/domain/place/dto/PlaceSimpleResponseDto.java +++ b/src/main/java/com/mey/backend/domain/place/dto/PlaceSimpleResponseDto.java @@ -16,6 +16,7 @@ public class PlaceSimpleResponseDto { private Double longitude; private Double latitude; private Long regionId; + private String imageUrl; private Map openingHours; private String addressKo; private String addressEn; @@ -31,6 +32,7 @@ public PlaceSimpleResponseDto(Place place) { this.longitude = place.getLongitude(); this.latitude = place.getLatitude(); this.regionId = place.getRegion().getRegionId(); + this.imageUrl = place.getImageUrl(); this.openingHours = place.getOpeningHours(); this.addressKo = place.getAddressKo(); this.addressEn = place.getAddressEn();