-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'backend/feature-143-country-map-marking' into dev_backend
- Loading branch information
Showing
5 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...com/isp/backend/domain/scheduleImage/dto/response/ReadScheduleImageCountriesResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.isp.backend.domain.scheduleImage.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ReadScheduleImageCountriesResponse { | ||
private List<ScheduleLocationResponse> locationSchedules; | ||
} |
14 changes: 14 additions & 0 deletions
14
...main/java/com/isp/backend/domain/scheduleImage/dto/response/ScheduleLocationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.isp.backend.domain.scheduleImage.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ScheduleLocationResponse { | ||
private double latitude; | ||
private double longitude; | ||
private List<Long> scheduleIds; | ||
} |
10 changes: 10 additions & 0 deletions
10
.../java/com/isp/backend/domain/scheduleImage/service/ReadScheduleImageCountriesService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.isp.backend.domain.scheduleImage.service; | ||
|
||
import com.isp.backend.domain.schedule.dto.response.ScheduleListResponse; | ||
import com.isp.backend.domain.scheduleImage.dto.response.ReadScheduleImageCountriesResponse; | ||
|
||
import java.util.List; | ||
|
||
public interface ReadScheduleImageCountriesService { | ||
ReadScheduleImageCountriesResponse readCountries(List<ScheduleListResponse> uid); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters