From 0f55a60d0caef3a544dfc2b4014b8ff43a976fd1 Mon Sep 17 00:00:00 2001 From: sumi Date: Sun, 14 Sep 2025 11:24:07 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9E=A5=EC=86=8C=20=EC=9D=B4=EB=A6=84?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=9E=A5=EC=86=8C=20=EA=B2=80=EC=83=89=20?= =?UTF-8?q?API=20=EC=9D=91=EB=8B=B5=20DTO=EC=97=90=20imageUrl=20=ED=95=84?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mey/backend/domain/place/dto/PlaceSimpleResponseDto.java | 2 ++ 1 file changed, 2 insertions(+) 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();