|
@@ -62,7 +62,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
// LINK_ID, IFSC_ID, ROAD_ID 가 검색 기준
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
//////////// 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MTerm(
|
|
|
@RequestParam String LINK_ID,
|
|
@@ -73,7 +73,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLink15MTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHTerm(
|
|
|
@RequestParam String LINK_ID,
|
|
@@ -84,7 +84,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLinkHHTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-dd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkDDTerm(
|
|
|
@RequestParam String LINK_ID,
|
|
@@ -95,7 +95,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLinkDDTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-mn", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkMNTerm(
|
|
|
@RequestParam String LINK_ID,
|
|
@@ -106,7 +106,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLinkMNTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-yy", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkYYTerm(
|
|
|
@RequestParam String LINK_ID,
|
|
@@ -118,7 +118,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MTerm(
|
|
|
@RequestParam String IFSC_ID,
|
|
@@ -129,7 +129,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfsc15MTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHTerm(
|
|
|
@RequestParam String IFSC_ID,
|
|
@@ -140,7 +140,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfscHHTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-dd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscDDTerm(
|
|
|
@RequestParam String IFSC_ID,
|
|
@@ -151,7 +151,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfscDDTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-mn", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscMNTerm(
|
|
|
@RequestParam String IFSC_ID,
|
|
@@ -162,7 +162,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfscMNTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-yy", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscYYTerm(
|
|
|
@RequestParam String IFSC_ID,
|
|
@@ -174,7 +174,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 기간검색
|
|
|
- @ApiOperation(value = "기간검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MTerm(
|
|
|
@RequestParam String ROAD_ID,
|
|
@@ -185,7 +185,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoad15MTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHTerm(
|
|
|
@RequestParam String ROAD_ID,
|
|
@@ -196,7 +196,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoadHHTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-dd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadDDTerm(
|
|
|
@RequestParam String ROAD_ID,
|
|
@@ -207,7 +207,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoadDDTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-mn", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadMNTerm(
|
|
|
@RequestParam String ROAD_ID,
|
|
@@ -218,7 +218,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoadMNTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-yy", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadYYTerm(
|
|
|
@RequestParam String ROAD_ID,
|
|
@@ -230,13 +230,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/link-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MHour(
|
|
|
- @RequestParam String LINK_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String LINK_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -244,13 +244,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLink15MHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/link-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHHour(
|
|
|
- @RequestParam String LINK_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String LINK_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -259,13 +259,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/ifsc-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MHour(
|
|
|
- @RequestParam String IFSC_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String IFSC_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -273,13 +273,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfsc15MHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/ifsc-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHHour(
|
|
|
- @RequestParam String IFSC_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String IFSC_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -288,13 +288,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/road-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MHour(
|
|
|
- @RequestParam String ROAD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ROAD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -302,13 +302,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoad15MHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/road-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHHour(
|
|
|
- @RequestParam String ROAD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ROAD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -318,12 +318,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
|
|
|
//////////// 링크 지정시각검색
|
|
|
//////////// TODO: 지정일은 반드시 조회조건에 포함시켜야 한다.
|
|
|
- @ApiOperation(value = "지정시각검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/link-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MSpec(
|
|
|
- @RequestParam String LINK_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String LINK_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -331,12 +331,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLink15MSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/link-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHSpec(
|
|
|
- @RequestParam String LINK_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String LINK_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -345,12 +345,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/ifsc-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MSpec(
|
|
|
- @RequestParam String IFSC_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String IFSC_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -358,12 +358,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfsc15MSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/ifsc-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHSpec(
|
|
|
- @RequestParam String IFSC_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String IFSC_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -372,12 +372,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/road-15m", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MSpec(
|
|
|
- @RequestParam String ROAD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ROAD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -385,12 +385,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoad15MSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/road-hh", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHSpec(
|
|
|
- @RequestParam String ROAD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ROAD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -402,55 +402,55 @@ public class AtrdTrafficStatisticsController {
|
|
|
// ATRD_ID 가 검색 기준
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
//////////// 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllLink15MByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllLinkHHByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-링크 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-dd/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkDDByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllLinkDDByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-링크 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-mn/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkMNByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllLinkMNByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-링크 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/link-yy/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkYYByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
@@ -458,55 +458,55 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllIfsc15MByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllIfscHHByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-서비스링크 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-dd/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscDDByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllIfscDDByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-서비스링크 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-mn/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscMNByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllIfscMNByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-서비스링크 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/ifsc-yy/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscYYByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
@@ -514,55 +514,55 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 기간검색
|
|
|
- @ApiOperation(value = "기간검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllRoad15MByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllRoadHHByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 일()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-도로 일", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-dd/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadDDByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllRoadDDByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 월()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-도로 월", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-mn/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadMNByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
|
return this.service.findAllRoadMNByAtrdIdTerm(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 년()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-간선도로-도로 년", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/term/road-yy/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadYYByAtrdIdTerm(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
@RequestParam String TO_DT) {
|
|
|
|
|
|
TrafficTermParam cond = new TrafficTermParam(ATRD_ID, FROM_DT, TO_DT);
|
|
@@ -570,13 +570,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/link-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -584,13 +584,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLink15MByAtrdIdHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/link-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -599,13 +599,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/ifsc-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -613,13 +613,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfsc15MByAtrdIdHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/ifsc-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -628,13 +628,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/road-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -642,13 +642,13 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoad15MByAtrdIdHour(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-간선도로-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/hour/road-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHByAtrdIdHour(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_DT,
|
|
|
- @RequestParam String TO_DT,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
@RequestParam String TO_HM
|
|
|
) {
|
|
|
|
|
@@ -658,12 +658,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
|
|
|
//////////// 링크 지정시각검색
|
|
|
//////////// TODO: 지정일은 반드시 조회조건에 포함시켜야 한다.
|
|
|
- @ApiOperation(value = "지정시각검색-링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/link-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLink15MByAtrdIdSpec(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -671,12 +671,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllLink15MByAtrdIdSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/link-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllLinkHHByAtrdIdSpec(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -685,12 +685,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-서비스링크 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/ifsc-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfsc15MByAtrdIdSpec(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -698,12 +698,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllIfsc15MByAtrdIdSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-서비스링크 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/ifsc-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllIfscHHByAtrdIdSpec(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -712,12 +712,12 @@ public class AtrdTrafficStatisticsController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-도로 15분()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-도로 15분", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/road-15m/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoad15MByAtrdIdSpec(
|
|
|
- @RequestParam String ATRD_ID,
|
|
|
- @RequestParam String FROM_HM,
|
|
|
- @RequestParam String TO_HM,
|
|
|
+ @RequestParam String ATRD_ID,
|
|
|
+ @RequestParam String FROM_HM,
|
|
|
+ @RequestParam String TO_HM,
|
|
|
@RequestParam List<String> statDays
|
|
|
) {
|
|
|
|
|
@@ -725,7 +725,7 @@ public class AtrdTrafficStatisticsController {
|
|
|
return this.service.findAllRoad15MByAtrdIdSpec(cond);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-도로 시간()", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-간선도로-도로 시간", response = AtrdTrafficStatDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/spec/road-hh/atrd", produces = {"application/json; charset=utf8"})
|
|
|
public List<AtrdTrafficStatDto> findAllRoadHHByAtrdIdSpec(
|
|
|
@RequestParam String ATRD_ID,
|