|
@@ -39,25 +39,29 @@ public class ScFileDownloadController {
|
|
}
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "원시이력정보수집 이력 파일 다운로드")
|
|
@ApiOperation(value = "원시이력정보수집 이력 파일 다운로드")
|
|
- @GetMapping(value = "/download/raw-clct/{fromDt}/{toDt}", produces = {"application/json; charset=utf8"})
|
|
|
|
|
|
+ @GetMapping(value = "/download/raw-clct/{ixrId}/{fromDt}/{toDt}", produces = {"application/json; charset=utf8"})
|
|
public ResponseEntity<Object> downloadImgnDtctRawClct(
|
|
public ResponseEntity<Object> downloadImgnDtctRawClct(
|
|
|
|
+ @ApiParam(name = "ixrId", value = "스마트교차로 ID", example = "1", required = true)
|
|
|
|
+ @PathVariable final String ixrId,
|
|
@ApiParam(name = "fromDt", value = "조회시작시각", example = "20230218000000", required = true)
|
|
@ApiParam(name = "fromDt", value = "조회시작시각", example = "20230218000000", required = true)
|
|
@PathVariable final String fromDt,
|
|
@PathVariable final String fromDt,
|
|
@ApiParam(name = "toDt", value = "조회종료시각", example = "20230218235959", required = true)
|
|
@ApiParam(name = "toDt", value = "조회종료시각", example = "20230218235959", required = true)
|
|
@PathVariable final String toDt,
|
|
@PathVariable final String toDt,
|
|
HttpServletRequest req, HttpServletResponse res) {
|
|
HttpServletRequest req, HttpServletResponse res) {
|
|
- return this.service.downloadImgnDtctRawClct(req, res, fromDt, toDt);
|
|
|
|
|
|
+ return this.service.downloadImgnDtctRawClct(req, res, ixrId, fromDt, toDt);
|
|
}
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "접근로 시간별 통계 파일 다운로드")
|
|
@ApiOperation(value = "접근로 시간별 통계 파일 다운로드")
|
|
- @GetMapping(value = "/download/acrd-hh-stat/{fromDt}/{toDt}", produces = {"application/json; charset=utf8"})
|
|
|
|
|
|
+ @GetMapping(value = "/download/acrd-hh-stat/{ixrId}/{fromDt}/{toDt}", produces = {"application/json; charset=utf8"})
|
|
public ResponseEntity<Object> downloadAcrdHhStat(
|
|
public ResponseEntity<Object> downloadAcrdHhStat(
|
|
|
|
+ @ApiParam(name = "ixrId", value = "스마트교차로 ID", example = "1", required = true)
|
|
|
|
+ @PathVariable final String ixrId,
|
|
@ApiParam(name = "fromDt", value = "조회시작시각", example = "20230218000000", required = true)
|
|
@ApiParam(name = "fromDt", value = "조회시작시각", example = "20230218000000", required = true)
|
|
@PathVariable final String fromDt,
|
|
@PathVariable final String fromDt,
|
|
@ApiParam(name = "toDt", value = "조회종료시각", example = "20230218235959", required = true)
|
|
@ApiParam(name = "toDt", value = "조회종료시각", example = "20230218235959", required = true)
|
|
@PathVariable final String toDt,
|
|
@PathVariable final String toDt,
|
|
HttpServletRequest req, HttpServletResponse res) {
|
|
HttpServletRequest req, HttpServletResponse res) {
|
|
- return this.service.downloadAcrdHhStat(req, res, fromDt, toDt);
|
|
|
|
|
|
+ return this.service.downloadAcrdHhStat(req, res, ixrId, fromDt, toDt);
|
|
}
|
|
}
|
|
|
|
|
|
// @ApiOperation(value = "최적 교통량 파일 목록", response = FileInfoDto.class, responseContainer = "ArrayList")
|
|
// @ApiOperation(value = "최적 교통량 파일 목록", response = FileInfoDto.class, responseContainer = "ArrayList")
|