| | |
| | | public RealTimeDataController(final IRealTimeDataService realTimeDataService) { |
| | | this.realTimeDataService = realTimeDataService; |
| | | } |
| | | |
| | | //yangys 20241022注释,估计是没用了,准备删除 |
| | | /* |
| | | @PostResource({"/status"}) |
| | | @ApiOperation(value = "获取工位的状态", notes = "传入工位组ID或者工位ID列表") |
| | | public R<List<DmpStatusVariableVO>> getWorkstationRealTimeStatus(@RequestBody WorkstationVO workstationVO) { |
| | | return R.data(this.realTimeDataService.getWorkstationRealTimeStatus(workstationVO)); |
| | | } |
| | | |
| | | |
| | | @GetResource({"/dmp-variables/{workstationId}"}) |
| | | @ApiOperation(value = "获取工位的采集项", notes = "传入workstationId") |
| | | public R<List<DmpVariablesVO>> getWorkstationDmpVariables(@PathVariable Long workstationId) { |
| | | return R.data(this.realTimeDataService.getWorkstationDmpVariables(workstationId)); |
| | | } |
| | | */ |
| | | } |