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 f73c975
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ public Map<LocalDate, List<VisitListInfo>> findVisitList(String accessToken) {
store.getCategory(),
store.getImageUrl(),
formattedTime,
store.getXloc(),
store.getYloc(),
visitList.getVisit_status()
);
})
Expand Down Expand Up @@ -154,6 +156,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 f73c975

Please sign in to comment.