| | |
| | | package com.doumee.api; |
| | | |
| | | import com.doumee.core.annotation.pr.PreventRepeat; |
| | | import com.doumee.service.business.third.WmsService; |
| | | import com.doumee.service.business.third.model.ApiResponse; |
| | | import com.doumee.service.business.PlatformJobService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | |
| | | @Autowired |
| | | private PlatformJobService platformJobService; |
| | | |
| | | @Autowired |
| | | private WmsService wmsService; |
| | | |
| | | |
| | | @ApiOperation("月台停靠超时报警业务") |
| | |
| | | return ApiResponse.success("月台今日作业外完成通知定时"); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("月台自动叫号") |
| | | @PostMapping("/autoPlatformCallCar") |
| | | public ApiResponse autoPlatformCallCar() { |
| | | platformJobService.autoPlatformCallCar(wmsService); |
| | | return ApiResponse.success("月台自动叫号"); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("月台自动叫号入园") |
| | | @PostMapping("/autoCallInParkCar") |
| | | public ApiResponse autoCallInParkCar() { |
| | | platformJobService.autoCallInParkCar(wmsService); |
| | | return ApiResponse.success("月台自动叫号入园"); |
| | | } |
| | | |
| | | |
| | | } |