Skip to content

Commit

Permalink
fix: 위도, 경도 데이터 전달
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Aug 2, 2024
1 parent 7fff533 commit c30150b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ public Map<LocalDate, List<VisitListInfo>> findTodayVisitList(String accessToken
store.getCategory(),
store.getImageUrl(),
formattedTime,
store.getXloc(),
store.getYloc(),
visitList.getVisit_status()
);
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ public record VisitListInfo(Long visitListId,
StoreCategory category,
String imageUrl,
String visitedTime,
String latitude,
String longitude,
VisitStatus status) {
}
}

0 comments on commit c30150b

Please sign in to comment.