| | |
| | | return AjaxResult.success(deptService.dashboard()); |
| | | } |
| | | |
| | | @GetMapping("/workOrder") |
| | | public AjaxResult workOrder(DashboardQuery dashboardQuery) { |
| | | return AjaxResult.success(workOrderService.dashboard(dashboardQuery)); |
| | | @GetMapping("/workOrder/total") |
| | | public AjaxResult workOrderTotal(DashboardQuery dashboardQuery) { |
| | | return AjaxResult.success(workOrderService.workOrderTotal(dashboardQuery)); |
| | | } |
| | | |
| | | @GetMapping("/workOrder/region") |
| | | public AjaxResult workOrderRegion(DashboardQuery dashboardQuery) { |
| | | return AjaxResult.success(workOrderService.workOrderRegion(dashboardQuery)); |
| | | } |
| | | |
| | | @GetMapping("/monitor/total") |