-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02055fe
commit ecc6394
Showing
73 changed files
with
716 additions
and
368 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
api/src/main/java/com/walking/api/domain/path/dto/CalculatePathFavoritesTimeUseCaseIn.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,19 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class CalculatePathFavoritesTimeUseCaseIn { | ||
private Long favoritesPathId; | ||
} |
33 changes: 33 additions & 0 deletions
33
api/src/main/java/com/walking/api/domain/path/dto/CalculatePathFavoritesTimeUseCaseOut.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,33 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import com.walking.api.domain.traffic.dto.detail.PointDetail; | ||
import com.walking.api.domain.traffic.dto.detail.TrafficDetail; | ||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class CalculatePathFavoritesTimeUseCaseOut { | ||
private LocalDateTime nowTime; | ||
private Integer totalTime; | ||
private Integer trafficCount; | ||
private List<LocalDateTime> departureTimes; | ||
private Integer timeToFirstTraffic; | ||
private Integer totalDistance; | ||
private PointDetail startPoint; | ||
private PointDetail endPoint; | ||
private List<TrafficDetail> traffics; | ||
private List<Long> trafficIdsInPath; | ||
private List<PointDetail> paths; | ||
} |
22 changes: 22 additions & 0 deletions
22
api/src/main/java/com/walking/api/domain/path/dto/CalculatePathTimeUseCaseIn.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,22 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class CalculatePathTimeUseCaseIn { | ||
private Double startLat; | ||
private Double startLng; | ||
private Double endLat; | ||
private Double endLng; | ||
} |
33 changes: 33 additions & 0 deletions
33
api/src/main/java/com/walking/api/domain/path/dto/CalculatePathTimeUseCaseOut.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,33 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import com.walking.api.domain.traffic.dto.detail.PointDetail; | ||
import com.walking.api.domain.traffic.dto.detail.TrafficDetail; | ||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class CalculatePathTimeUseCaseOut { | ||
private LocalDateTime nowTime; | ||
private Integer totalTime; | ||
private Integer trafficCount; | ||
private List<LocalDateTime> departureTimes; | ||
private Integer timeToFirstTraffic; | ||
private Integer totalDistance; | ||
private PointDetail startPoint; | ||
private PointDetail endPoint; | ||
private List<TrafficDetail> traffics; | ||
private List<Long> trafficIdsInPath; | ||
private List<PointDetail> paths; | ||
} |
20 changes: 20 additions & 0 deletions
20
api/src/main/java/com/walking/api/domain/path/dto/DeleteFavoriteRouteUseCaseIn.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,20 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class DeleteFavoriteRouteUseCaseIn { | ||
private Long memberId; | ||
private Long pathId; | ||
} |
13 changes: 0 additions & 13 deletions
13
api/src/main/java/com/walking/api/domain/path/dto/PathPrimaryData.java
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
api/src/main/java/com/walking/api/domain/path/dto/ReadFavoritesPathUseCaseIn.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,26 @@ | ||
package com.walking.api.domain.path.dto; | ||
|
||
import com.walking.api.web.dto.request.OrderFilter; | ||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
@EqualsAndHashCode | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
@NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
@Builder | ||
public class ReadFavoritesPathUseCaseIn { | ||
private Long memberId; | ||
private String name; | ||
private OrderFilter orderFilter; | ||
|
||
public boolean isOrderFiltered() { | ||
return orderFilter != null; | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.