| | |
| | | } |
| | | |
| | | /** |
| | | *首页公司级 技术状态数量统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | @GetMapping("getFactoryEquipmentTechnologyStatusList") |
| | | public Result<?> getFactoryEquipmentTechnologyStatusList() { |
| | | List<Map<String, Object>> list = calibrationOrderService.getFactoryEquipmentTechnologyStatusList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | /** |
| | | *首页公司级 设备报修情况统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | @GetMapping("getFactoryReportRepairEquipmentList") |
| | | public Result<?> getFactoryReportRepairEquipmentList() { |
| | | List<Map<String, Object>> list = calibrationOrderService.getFactoryReportRepairEquipmentList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | /** |
| | | *首页公司级 本月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @GetMapping("getFactoryThisMonthMaintenanceList") |
| | | public Result<?> getFactoryThisMonthMaintenanceList() { |
| | | List<Map<String, Object>> list = calibrationOrderService.getFactoryThisMonthMaintenanceList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | /** |
| | | *首页公司级 下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @GetMapping("getFactoryNextMonthMaintenanceList") |
| | | public Result<?> getFactoryNextMonthMaintenanceList() { |
| | | List<Map<String, Object>> list = calibrationOrderService.getFactoryNextMonthMaintenanceList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | /** |
| | | *首页公司级 下下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @GetMapping("getFactoryNextNextMonthMaintenanceList") |
| | | public Result<?> getFactoryNextNextMonthMaintenanceList() { |
| | | List<Map<String, Object>> list = calibrationOrderService.getFactoryNextNextMonthMaintenanceList(); |
| | | return Result.ok(list); |
| | | } |
| | | |
| | | /** |
| | | *首页技术状态数量统计 |
| | | * qsw 2024-3-13 |
| | | */ |