Skip to content

Commit

Permalink
[Weekly/11/Hotfix/Event] 모든 이벤트조회 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Daolove0323 committed Nov 15, 2024
1 parent 3485443 commit cc0a883
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class LocationRequest {

@Min(value = -90, message = "위도는 -90 이상이어야 합니다.")
@Max(value = 90, message = "위도는 90 이하여야 합니다.")
private Double latitude;
private Double latitude = 37.0;

@Min(value = -180, message = "경도는 -180 이상이어야 합니다.")
@Max(value = 180, message = "경도는 180 이하여야 합니다.")
private Double longitude;
private Double longitude = 127.1;
}

0 comments on commit cc0a883

Please sign in to comment.