File tree Expand file tree Collapse file tree
src/main/java/boombimapi/domain/place Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -157,6 +157,8 @@ public OfficialPlaceOverviewResponse getOverview(
157157 officialPlace .getLegalDong (),
158158 officialPlace .getPoiCode (),
159159 officialPlace .getImageUrl (),
160+ latestOfficialCongestion .getCongestionLevel ().getName (),
161+ latestOfficialCongestion .getCongestionLevel ().getMessage (),
160162 latestOfficialCongestion .getObservedAt (),
161163 officialPlace .getCentroidLatitude (),
162164 officialPlace .getCentroidLongitude (),
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ public record OfficialPlaceOverviewResponse(
1111 PlaceType placeType ,
1212 String poiCode ,
1313 String imageUrl ,
14+ String congestionLevelName ,
15+ String congestionMessage ,
1416 LocalDateTime observedAt ,
1517 Double centroidLatitude ,
1618 Double centroidLongitude ,
@@ -26,6 +28,8 @@ public static OfficialPlaceOverviewResponse of(
2628 String legalDong ,
2729 String poiCode ,
2830 String imageUrl ,
31+ String congestionLevelName ,
32+ String congestionMessage ,
2933 LocalDateTime observedAt ,
3034 Double centroidLatitude ,
3135 Double centroidLongitude ,
@@ -41,6 +45,8 @@ public static OfficialPlaceOverviewResponse of(
4145 PlaceType .OFFICIAL_PLACE ,
4246 poiCode ,
4347 imageUrl ,
48+ congestionLevelName ,
49+ congestionMessage ,
4450 observedAt ,
4551 centroidLatitude ,
4652 centroidLongitude ,
You can’t perform that action at this time.
0 commit comments