| | |
| | | |
| | | |
| | | //qsw 2023-7-18================================================================================ |
| | | |
| | | /** |
| | | * 根据模型传入的编码 判断改编码公司/中心/工段的哪一级 |
| | | */ |
| | | String findOrgType(String productionCode); |
| | | |
| | | /** |
| | | * 根据模型传入的编码 判断改编码公司/中心/工段的哪一级 |
| | | * qsw 2024-3-18 |
| | | */ |
| | | String findProductionCode(String userId); |
| | | |
| | | /** |
| | | * 设备检定工单 创建时通过设备获取设备精度参数 |
| | | * qsw 2023-7-18 |
| | |
| | | *首页(二级页面)技术状态数量统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | List<Map<String, Object>> getEquipmentTechnologyStatusList(String factoryModelId); |
| | | List<Map<String, Object>> getEquipmentTechnologyStatusList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页(二级页面)设备报修情况统计 |
| | | * qsw 2024-3-13 |
| | | */ |
| | | List<Map<String, Object>> getReportRepairEquipmentList(String factoryModelId); |
| | | List<Map<String, Object>> getReportRepairEquipmentList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页(二级页面)本月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | List<Map<String, Object>> getThisMonthMaintenanceList(String factoryModelId); |
| | | List<Map<String, Object>> getThisMonthMaintenanceList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页(二级页面)下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | List<Map<String, Object>> getNextMonthMaintenanceList(String factoryModelId); |
| | | List<Map<String, Object>> getNextMonthMaintenanceList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页(二级页面)下下月三保计划 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | List<Map<String, Object>> getNextNextMonthMaintenanceList(String factoryModelId); |
| | | List<Map<String, Object>> getNextNextMonthMaintenanceList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页(二级页面)本月三保完成数量 |
| | | * qsw 2024-3-14 |
| | | */ |
| | | List<Map<String, Object>> getThisMonthMaintenanceFinishList(String factoryModelId); |
| | | List<Map<String, Object>> getThisMonthMaintenanceFinishList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *首页二保计划展示 |
| | | * qsw 2024-3-15 |
| | | */ |
| | | List<Map<String, Object>> getTwoMaintenancePlanList(); |
| | | |
| | | } |