Skip to content

Commit

Permalink
[#257] chore: longtitude 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyerinhwang-sailin committed Nov 25, 2024
1 parent 0a20268 commit fd90186
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public PerformanceResponse createPerformance(Long memberId, PerformanceRequest r
request.roadAddressName(),
request.placeDetailAddress(),
request.latitude(),
request.longitude(),
request.longtitude(),
request.performanceContact(),
" ", // 이후 dto performancePeriod 제외 필요
request.ticketPrice(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void updatePerformanceDetails(Performance performance, PerformanceModify
request.roadAddressName(),
request.placeDetailAddress(),
request.latitude(),
request.longitude(),
request.longtitude(),
request.performanceContact(),
request.performancePeriod(),
request.totalScheduleCount()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public record PerformanceRequest(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public record PerformanceResponse(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand All @@ -49,7 +49,7 @@ public static PerformanceResponse of(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand All @@ -76,7 +76,7 @@ public static PerformanceResponse of(
roadAddressName,
placeDetailAddress,
latitude,
longitude,
longtitude,
performanceContact,
performancePeriod,
ticketPrice,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public record PerformanceModifyDetailResponse(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand Down Expand Up @@ -54,7 +54,7 @@ public static PerformanceModifyDetailResponse of(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand Down Expand Up @@ -82,7 +82,7 @@ public static PerformanceModifyDetailResponse of(
roadAddressName,
placeDetailAddress,
latitude,
longitude,
longtitude,
performanceContact,
performancePeriod,
ticketPrice,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public record PerformanceModifyRequest(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int totalScheduleCount,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public record PerformanceModifyResponse(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand All @@ -53,7 +53,7 @@ public static PerformanceModifyResponse of(
String roadAddressName,
String placeDetailAddress,
String latitude,
String longitude,
String longtitude,
String performanceContact,
String performancePeriod,
int ticketPrice,
Expand All @@ -80,7 +80,7 @@ public static PerformanceModifyResponse of(
roadAddressName,
placeDetailAddress,
latitude,
longitude,
longtitude,
performanceContact,
performancePeriod,
ticketPrice,
Expand Down

0 comments on commit fd90186

Please sign in to comment.