|
@@ -29,7 +29,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
* @param id
|
|
|
* @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "VMS 폼 스케줄 목록 조회(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 스케줄 목록 조회(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllVmsDsplSchedule(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -44,7 +44,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
* @param schType
|
|
|
* @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "VMS 제어기 유형별 폼 스케줄 목록 조회(TB_VMS_TRFC_INFR_DSPL_SCH)", response = VmsFormIfscDto.class)
|
|
|
+ @ApiOperation(value = "VMS 제어기 유형별 폼 스케줄 목록 조회(TB_VMS_DSPL_SCH)", response = VmsFormIfscDto.class)
|
|
|
@GetMapping(value = "/form/ifsc/{ctlrId}/{schType}/{phase}", produces = {"application/json; charset=utf8"})
|
|
|
public VmsFormIfscDto findAllVmsFormIfsc(
|
|
|
@ApiParam(name = "ctlrId", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -58,13 +58,13 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation(value = "VMS 제어기 유형별 폼 스케줄 목록 조회(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
- @GetMapping(value = "/list-form/{id}/{type}", produces = {"application/json; charset=utf8"})
|
|
|
+ @ApiOperation(value = "VMS 제어기 유형별 폼 스케줄 목록 조회(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/list-form/{ctlrNmbr}/{schType}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllVmsDsplSchedule(
|
|
|
- @ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
|
- @PathVariable final Long id,
|
|
|
- @ApiParam(name = "type", value = "VMS 스케쥴 코드(0:교통정보,1:돌발,2:공사/행사,3:홍보,4:우회도로,7:정체,8:재난안전)", example = "0", required = true)
|
|
|
- @PathVariable final Integer type
|
|
|
+ @ApiParam(name = "ctlrNmbr", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
|
+ @PathVariable final Long ctlrNmbr,
|
|
|
+ @ApiParam(name = "schType", value = "VMS 스케쥴 코드(0:교통정보,1:돌발,2:공사/행사,3:홍보,4:우회도로,7:정체,8:재난안전)", example = "0", required = true)
|
|
|
+ @PathVariable final Integer schType
|
|
|
) {
|
|
|
// 교통정보 ("0");
|
|
|
// 돌발 ("1");
|
|
@@ -73,8 +73,8 @@ public class TbVmsDsplSchAutoController {
|
|
|
// 우회도로 ("4");
|
|
|
// 정체 ("7");
|
|
|
// 재난안전 ("8");
|
|
|
- List<Integer> trfcSituTypeCd = Arrays.asList(type);
|
|
|
- return this.service.findAllVmsDsplSchedule(id, "A", trfcSituTypeCd);
|
|
|
+ List<Integer> trfcSituTypeCd = Arrays.asList(schType);
|
|
|
+ return this.service.findAllVmsDsplSchedule(ctlrNmbr, "A", trfcSituTypeCd);
|
|
|
}
|
|
|
// 교통정보 폼 그리기
|
|
|
@ApiOperation(value = "VMS 교통정보 폼 그리기", response = VmsFormDrawTrafDto.class, responseContainer = "ArrayList")
|
|
@@ -90,7 +90,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 교통정보
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-교통정보(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-교통정보(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/traffic/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllTrafficByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -100,7 +100,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 정체
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-정체(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-정체(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/congest/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllCongestByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -110,7 +110,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 돌발
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-돌발(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-돌발(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/incident/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllIncidentByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -120,7 +120,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 공사/행사
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-공사/행사(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-공사/행사(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/event/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllEventByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -130,7 +130,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 홍보
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-홍보(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-홍보(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/notice/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllHongboByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -140,7 +140,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 우회도로
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-우회도로(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-우회도로(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/detour/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllDetourByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
@@ -150,7 +150,7 @@ public class TbVmsDsplSchAutoController {
|
|
|
}
|
|
|
|
|
|
// 재난안전
|
|
|
- @ApiOperation(value = "VMS 폼 정보 조회-재난안전(TB_VMS_TRFC_INFR_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
+ @ApiOperation(value = "VMS 폼 정보 조회-재난안전(TB_VMS_DSPL_SCH)", response = TbVmsDsplSchDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/safety/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsDsplSchDto> findAllSafetyByVmsType(
|
|
|
@ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|