| | |
| | | |
| | | @GetMapping("/processDataProductionStatistics") |
| | | @ApiOperation("工序数据生产统计数据") |
| | | public AjaxResult processDataProductionStatistics(@DefaultType Integer type,@RequestParam(required = false) List<Long> processIds) { |
| | | List<processDataProductionStatisticsDto> list = homeService.processDataProductionStatistics(type, processIds); |
| | | public AjaxResult processDataProductionStatistics(@DefaultType Integer type,@RequestParam(required = false) List<Long> processTypes) { |
| | | List<ProcessDataProductionStatisticsDto> list = homeService.processDataProductionStatistics(type, processTypes); |
| | | return AjaxResult.success(list); |
| | | } |
| | | |