|
@@ -117,6 +117,16 @@ public class VmsCommonController {
|
|
|
return this.dsplPrstService.findAllByIds(id);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "VMS 표출 현재 폼 조회(PHASE)(TB_VMS_DSPL_PRST)", response = TbVmsDsplPrstDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/vms-form/dspl-prst/{id}/{phase}", produces = {"application/json; charset=utf8"})
|
|
|
+ public TbVmsDsplPrstDto findAllVmsDsplPrstPhase(
|
|
|
+ @ApiParam(name = "id", value = "VMS 제어기 관리번호", example = "10005", required = true)
|
|
|
+ @PathVariable final Long id,
|
|
|
+ @ApiParam(name = "phase", value = "표출 메시지 Phase", example = "1", required = true)
|
|
|
+ @PathVariable final Integer phase) {
|
|
|
+ return this.dsplPrstService.findAllByIdAndPhase(id, phase);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "VMS정보제공구간소통정보(TB_VMS_CMTRINFR)", response = TrafDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/vms-ifsc-traf/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsCmtrInfrDto> findAllTrafVms(
|