| | |
| | | } |
| | | |
| | | /** |
| | | * APP审核列表 |
| | | * 待办列表统计 |
| | | */ |
| | | @GetMapping(value = "/approval_count") |
| | | public R countList(ProjectSearchDTO searchDTO) { |
| | |
| | | return R.data(map); |
| | | } |
| | | |
| | | /** |
| | | * 审批状态统计 |
| | | */ |
| | | @GetMapping(value = "/status_count") |
| | | public R statusCount(ProjectSearchDTO searchDTO) { |
| | | Map<String,Long> map= sgProgressReportService.statusCount(searchDTO); |
| | | return R.data(map); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 审批状态统计 |
| | | */ |
| | | @GetMapping(value = "/check_step") |
| | | public R checkStep(@RequestParam Long deviceId , @RequestParam Long stepId) { |
| | | boolean flag = sgProgressReportService.checkStep(deviceId,stepId); |
| | | return R.data(flag); |
| | | } |
| | | } |