yangys
2024-10-30 25db770e621f1259b8d5b7fd514207f7481c2d0f
smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/controller/RealTimeDataController.java
@@ -24,16 +24,18 @@
    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));
    }
    */
}