qushaowei
2024-04-07 63a5530a85e6eaf7f8be733e87d32af2d16477a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.jeecg.modules.eam.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.entity.FaultIntervalTime;
import org.jeecg.modules.eam.vo.EquipmentAvailabilityVo;
 
import java.text.ParseException;
import java.util.List;
import java.util.Map;
 
/**
 * @Description: mom_eam_fault_interval_time
 * @Author: jeecg-boot
 * @Date:   2023-08-30
 * @Version: V1.0
 */
public interface IFaultIntervalTimeService extends IService<FaultIntervalTime> {
 
    List<Map<String, Object>> getEquipmentList(Map<String, Object> params);
 
    List<Map<String, Object>> getEquipmentMTBF(Map<String, Object> params);
 
    List<Map<String, Object>> getMTBFTotalAvailableTime(Map<String, Object> params);
 
    public List<FaultIntervalTime> getMTBF(Map<String, String> query) throws ParseException;
}