|  |  | 
 |  |  |     private PlatformJobService platformJobService; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("月台作业报警业务") | 
 |  |  |     @ApiOperation("月台停靠超时报警业务") | 
 |  |  |     @GetMapping("/platformJobTimer") | 
 |  |  |     public ApiResponse platformJobTimer() { | 
 |  |  |         platformJobService.timeOutReport(); | 
 |  |  |         platformJobService.timeOutCallIn(); | 
 |  |  |         platformJobService.timeOutWork(); | 
 |  |  |         return ApiResponse.success("月台作业报警业务"); | 
 |  |  |         return ApiResponse.success("月台停靠超时报警业务"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("月台作业超时报警业务") | 
 |  |  |     @GetMapping("/platformJobWorkTimeOut") | 
 |  |  |     public ApiResponse platformJobWorkTimeOut() { | 
 |  |  |         platformJobService.timeOutWork(); | 
 |  |  |         return ApiResponse.success("月台作业超时报警业务"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("月台等待作业超时业务") | 
 |  |  |     @GetMapping("/platformJobWaitTimeOut") | 
 |  |  |     public ApiResponse platformJobWaitTimeOut() { | 
 |  |  |         platformJobService.timeOutCallIn(); | 
 |  |  |         return ApiResponse.success("月台等待作业超时业务"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |