|
|
@@ -34,35 +34,35 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 15분(TB_LINK_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/link-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLink15MTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllLink15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 시간(TB_LINK_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/link-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkHHTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllLinkHH(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 일()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 일(TB_LINK_DD_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/link-dd/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkDDTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllLinkDD(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 월()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 월(TB_LINK_MN_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/link-mn/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkMNTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllLinkMN(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-링크 년()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-링크 년(TB_LINK_YY_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/link-yy/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkYYTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllLinkYY(cond);
|
|
|
@@ -70,35 +70,35 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 기간검색
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 15분(TB_IFSC_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/ifsc-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfsc15MTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllIfsc15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 시간(TB_IFSC_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/ifsc-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscHHTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllIfscHH(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 일()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 일(TB_IFSC_DD_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/ifsc-dd/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscDDTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllIfscDD(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 월()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 월(TB_IFSC_MN_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/ifsc-mn/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscMNTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllIfscMN(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-서비스링크 년()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-서비스링크 년(TB_IFSC_YY_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/ifsc-yy/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscYYTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllIfscYY(cond);
|
|
|
@@ -106,35 +106,35 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 기간검색
|
|
|
- @ApiOperation(value = "기간검색-도로 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 15분(TB_ROAD_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/road-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoad15MTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllRoad15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 시간(TB_ROAD_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/road-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadHHTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllRoadHH(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 일()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 일(TB_ROAD_DD_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/road-dd/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadDDTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllRoadDD(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 월()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 월(TB_ROAD_MN_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/road-mn/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadMNTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllRoadMN(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "기간검색-도로 년()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "기간검색-도로 년(TB_ROAD_YY_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/term/road-yy/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadYYTerm(@RequestBody TrafficTermParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceTerm.findAllRoadYY(cond);
|
|
|
@@ -142,14 +142,14 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-링크 15분(TB_LINK_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/link-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLink15MHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllLink15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-링크 시간(TB_LINK_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/link-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkHHHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllLinkHH(cond);
|
|
|
@@ -157,14 +157,14 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-서비스링크 15분(TB_IFSC_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/ifsc-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfsc15MHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllIfsc15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-서비스링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-서비스링크 시간(TB_IFSC_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/ifsc-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscHHHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllIfscHH(cond);
|
|
|
@@ -172,14 +172,14 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 시간대검색
|
|
|
- @ApiOperation(value = "시간대검색-도로 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-도로 15분(TB_ROAD_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/road-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoad15MHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllRoad15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "시간대검색-도로 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "시간대검색-도로 시간(TB_ROAD_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/hour/road-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadHHHour(@RequestBody TrafficHourParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceHour.findAllRoadHH(cond);
|
|
|
@@ -188,14 +188,14 @@ public class TrafficController {
|
|
|
|
|
|
//////////// 링크 지정시각검색
|
|
|
//////////// TODO: 지정일은 반드시 조회조건에 포함시켜야 한다.
|
|
|
- @ApiOperation(value = "지정시각검색-링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-링크 15분(TB_LINK_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/link-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLink15MSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllLink15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-링크 시간(TB_LINK_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/link-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllLinkHHSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllLinkHH(cond);
|
|
|
@@ -203,14 +203,14 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 서비스 링크 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-서비스링크 15분(TB_IFSC_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/ifsc-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfsc15MSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllIfsc15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-서비스링크 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-서비스링크 시간(TB_IFSC_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/ifsc-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllIfscHHSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllIfscHH(cond);
|
|
|
@@ -218,14 +218,14 @@ public class TrafficController {
|
|
|
}
|
|
|
|
|
|
//////////// 도로 지정시각검색
|
|
|
- @ApiOperation(value = "지정시각검색-도로 15분()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-도로 15분(TB_ROAD_15M_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/road-15m/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoad15MSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllRoad15M(cond);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "지정시각검색-도로 시간()", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "지정시각검색-도로 시간(TB_ROAD_HH_STAT)", response = TrafficVo.class, responseContainer = "ArrayList")
|
|
|
@PostMapping(value = "/spec/road-hh/", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<TrafficVo>> findAllRoadHHSpec(@RequestBody TrafficSpecParam cond, HttpServletRequest request) {
|
|
|
List<TrafficVo> result = this.serviceSpec.findAllRoadHH(cond);
|