Skip to content

Commit

Permalink
chore : 주석, 스키마 수정 및 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
DHkimgit committed Dec 10, 2024
1 parent 187fbd2 commit 0552b56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.time.LocalTime;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;

import com.fasterxml.jackson.databind.PropertyNamingStrategies.SnakeCaseStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@ public class CityBusTimetable {
/**
* 1. 한기대 -> 터미널행 시내버스의 기점은 한기대 정류장이 아님
* 2. 400번은 병천3리, 402번은 황사동, 405번은 유관순열사사적지에서 출발해서 한기대 정류장에 도착
* 3. 제공받는 시내버스의 운행 시간은 기점 기준이기 때문에 각 버스의 기점에서 한기대 정류장에 도착하기까지의 시간을 더해서 보정해야 함
* 3. 제공받는 시내버스의 운행 시간은 기점 기준이기 때문에 각 버스의 기점에서 한기대 정류장까지 이동 시간을 더해서 보정해야 함
*/
private static final Integer ADDITIONAL_TIME_DEPART_TO_KOREATECH_400 = 6;
private static final Integer ADDITIONAL_TIME_DEPART_TO_KOREATECH_402 = 13;
private static final Integer ADDITIONAL_TIME_DEPART_TO_KOREATECH_405 = 7;
/**
* 1. 천안역 -> 한기대행 시내버스의 기점은 천안 터미널 정류장.
* 2. 제공받는 시내버스의 운행 시간은 기점 기준이기 때문에 터미널에서 천안역 정류장까지 이동 시간을 더해서 보정해야 함
*/
private static final Integer ADDITIONAL_TIME_DEPART_TO_STATION = 7;

@Id
@Field("_id")
Expand Down Expand Up @@ -114,6 +119,8 @@ public List<LocalTime> applyTimeOffset(Long busNumber, BusStation depart) {
schedule = schedule.plusMinutes(ADDITIONAL_TIME_DEPART_TO_KOREATECH_402);
} else if (busNumber == 405 && depart == BusStation.KOREATECH) {
schedule = schedule.plusMinutes(ADDITIONAL_TIME_DEPART_TO_KOREATECH_405);
} else if (depart == BusStation.STATION) {
schedule = schedule.plusMinutes(ADDITIONAL_TIME_DEPART_TO_STATION);
}
return schedule;
})
Expand Down

0 comments on commit 0552b56

Please sign in to comment.