| | |
| | | return CommonResult.success(tMap); |
| | | } |
| | | |
| | | @GetMapping("/main-process-index/list") |
| | | @Operation(summary = "主工序指标") |
| | | public CommonResult<List<MainProcessIndexDTO>> getMainIndexList(@RequestParam Map<String, Object> params) { |
| | | List<MainProcessIndexDTO> list = dataApi.getIndexList(params); |
| | | return success(list); |
| | | } |
| | | |
| | | @GetMapping("/child-process-index/list") |
| | | @Operation(summary = "子工序指标") |
| | | public CommonResult<List<ChildProcessIndexDTO>> getChildIndexList(@RequestParam Map<String, Object> params) { |
| | | List<ChildProcessIndexDTO> list = new ArrayList<>(); |
| | | return success(list); |
| | | } |
| | | |
| | | @PostMapping("/schedule-suggest/use-suggest") |
| | | @Operation(summary = "采纳建议") |
| | | public CommonResult<Boolean> useSuggest(@RequestBody StAlarmAndSuggestReqVO ReqVO) { |