Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class PlaceSimpleResponseDto {
private Double longitude;
private Double latitude;
private Long regionId;
private String imageUrl;
private Map<String, String> openingHours;
private String addressKo;
private String addressEn;
Expand All @@ -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();
Expand Down