|
@@ -36,4 +36,17 @@ public class TbVdsCtlrSttsHsController {
|
|
|
return this.service.findAllByDateRange(FROM_DT, TO_DT, id);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "VDS 제어기 장애 이력조회(TB_VDS_CTLR_STTS_RAW)", response = TbVdsCtlrSttsHsDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/fail", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbVdsCtlrSttsHsDto> findAllFailByDateRange(
|
|
|
+ @ApiParam(name = "FROM_DT", value = "조회시작시각(YYYYMMDDHH24MI00)", example = "20210112152000", required = true)
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @ApiParam(name = "TO_DT", value = "조회종료시각(YYYYMMDDHH24MI59)", example = "20221112152000", required = true)
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @ApiParam(name = "id", value = "VDS 관리번호 목록", example = "[00000001,00000002]", required = true)
|
|
|
+ @RequestParam List<String> id
|
|
|
+ ) {
|
|
|
+ return this.service.findAllFailByDateRange(FROM_DT, TO_DT, id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|