| | |
| | | package org.jeecg.modules.eam.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.eam.entity.FaultIntervalTime; |
| | | import org.jeecg.modules.eam.vo.EquipmentAvailabilityVo; |
| | |
| | | */ |
| | | public interface IFaultIntervalTimeService extends IService<FaultIntervalTime> { |
| | | |
| | | List<Map<String, Object>> getEquipmentList(Map<String, Object> params); |
| | | |
| | | List<Map<String, Object>> getWorkCenterList(Map<String, Object> params); |
| | | |
| | | List<Map<String, Object>> getEquipmentMTBF(Map<String, Object> params); |
| | | |
| | | List<Map<String, Object>> getMTBFTotalAvailableTime(Map<String, Object> params); |
| | | |
| | | List<Map<String, Object>> getCenterEquipmentMTBF(Map<String, Object> params); |
| | | |
| | | List<Map<String, Object>> getCenterMTBFTotalAvailableTime(Map<String, Object> params); |
| | | |
| | | public List<FaultIntervalTime> getMTBF(Map<String, String> query) throws ParseException; |
| | | } |