| | |
| | | import com.ycl.platform.domain.vo.WorkOrderVO; |
| | | import com.ycl.platform.domain.vo.WorkOrderYwConditionRecordVO; |
| | | import com.ycl.platform.domain.vo.screen.ScreenWorkOrderVO; |
| | | import com.ycl.platform.domain.vo.screen.WorkOrderRegionVO; |
| | | import com.ycl.platform.domain.vo.screen.WorkOrderTotalVO; |
| | | import com.ycl.platform.mapper.*; |
| | | import com.ycl.platform.service.NotifyService; |
| | | import com.ycl.platform.service.WorkOrderAuditingRecordService; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> dashboard(DashboardQuery dashboardQuery) { |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("workOrderTotal", baseMapper.workOrderTotal(dashboardQuery)); |
| | | map.put("workOrderRegion", baseMapper.workOrderRegion(dashboardQuery)); |
| | | return map; |
| | | public WorkOrderTotalVO workOrderTotal(DashboardQuery dashboardQuery) { |
| | | return baseMapper.workOrderTotal(dashboardQuery); |
| | | } |
| | | |
| | | @Override |
| | | public List<WorkOrderRegionVO> workOrderRegion(DashboardQuery dashboardQuery) { |
| | | return baseMapper.workOrderRegion(dashboardQuery); |
| | | } |
| | | } |