| | |
| | | @Autowired |
| | | private PlatformJobService platformJobService; |
| | | |
| | | @ApiOperation("超时报警数据") |
| | | @GetMapping("/platformJobTimeOut") |
| | | public ApiResponse platformJobTimeOut() { |
| | | @ApiOperation("月台作业报警业务") |
| | | @GetMapping("/platformJobTimer") |
| | | public ApiResponse platformJobTimer() { |
| | | platformJobService.timeOutReport(); |
| | | return ApiResponse.success("超时报警数据"); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("超时自动过号") |
| | | @GetMapping("/timeOutCallIn") |
| | | public ApiResponse timeOutCallIn() { |
| | | platformJobService.timeOutCallIn(); |
| | | return ApiResponse.success("自动过号"); |
| | | platformJobService.timeOutWork(); |
| | | return ApiResponse.success("月台作业报警业务"); |
| | | } |
| | | |
| | | |
| | | |
| | | } |