| | |
| | | public List<Map<String, Object>> getPrecisionParameterList(String equipmentId) { |
| | | return this.baseMapper.getPrecisionParameterList(equipmentId); |
| | | } |
| | | |
| | | /** |
| | | *首页技术状态数量统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | @Override |
| | | public List<Map<String, Object>> getEquipmentTechnologyStatusList(String factoryModelId) { |
| | | return this.baseMapper.getEquipmentTechnologyStatusList(factoryModelId); |
| | | } |
| | | |
| | | /** |
| | | *首页设备报修情况统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | @Override |
| | | public List<Map<String, Object>> getReportRepairEquipmentList(String factoryModelId) { |
| | | return this.baseMapper.getReportRepairEquipmentList(factoryModelId); |
| | | } |
| | | |
| | | /** |
| | | *首页本月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @Override |
| | | public List<Map<String, Object>> getThisMonthMaintenanceList(String factoryModelId) { |
| | | return this.baseMapper.getThisMonthMaintenanceList(factoryModelId); |
| | | } |
| | | |
| | | /** |
| | | *首页下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @Override |
| | | public List<Map<String, Object>> getNextMonthMaintenanceList(String factoryModelId) { |
| | | return this.baseMapper.getNextMonthMaintenanceList(factoryModelId); |
| | | } |
| | | |
| | | /** |
| | | *首页下下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | @Override |
| | | public List<Map<String, Object>> getNextNextMonthMaintenanceList(String factoryModelId) { |
| | | return this.baseMapper.getNextNextMonthMaintenanceList(factoryModelId); |
| | | } |
| | | } |