qushaowei
2024-03-18 7aa4d932c658e293e96251e75094c32c629a5988
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/ICalibrationOrderService.java
@@ -51,10 +51,102 @@
    //qsw 2023-7-18================================================================================
    /**
     * 根据模型传入的编码  判断改编码公司/中心/工段的哪一级
     */
    String findOrgType(String productionCode);
    /**
     * 根据模型传入的编码  判断改编码公司/中心/工段的哪一级
     * qsw 2024-3-18
     */
    String findProductionCode(String userId);
    /**
     * 设备检定工单 创建时通过设备获取设备精度参数
     * qsw 2023-7-18
     */
    List<Map<String, Object>> getPrecisionParameterList(String equipmentId);
    /**
     *首页公司级 技术状态数量统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getFactoryEquipmentTechnologyStatusList();
    /**
     *首页公司级 设备报修情况统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getFactoryReportRepairEquipmentList();
    /**
     *首页公司级 本月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryThisMonthMaintenanceList();
    /**
     *首页公司级 下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryNextMonthMaintenanceList();
    /**
     *首页公司级 下下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryNextNextMonthMaintenanceList();
    /**
     *首页公司级 本月三保完成数量
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryThisMonthMaintenanceFinishList();
    /**
     *首页(二级页面)技术状态数量统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getEquipmentTechnologyStatusList(String workCenterId,String areaId);
    /**
     *首页(二级页面)设备报修情况统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getReportRepairEquipmentList(String workCenterId,String areaId);
    /**
     *首页(二级页面)本月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getThisMonthMaintenanceList(String workCenterId,String areaId);
    /**
     *首页(二级页面)下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getNextMonthMaintenanceList(String workCenterId,String areaId);
    /**
     *首页(二级页面)下下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getNextNextMonthMaintenanceList(String workCenterId,String areaId);
    /**
     *首页(二级页面)本月三保完成数量
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getThisMonthMaintenanceFinishList(String workCenterId,String areaId);
    /**
     *首页二保计划展示
     * qsw 2024-3-15
     */
    List<Map<String, Object>> getTwoMaintenancePlanList();
}