Lius
2025-06-17 d0f024586f38a11662787c42b84e037a1c1be6cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.mdc.mapper;
 
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdc.entity.MdcEquipmentFaultInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.mdc.vo.EquFaultRecord;
 
import java.util.List;
 
/**
 * @Description: 故障率表
 * @Author: jeecg-boot
 * @Date:   2025-06-16
 * @Version: V1.0
 */
public interface MdcEquipmentFaultInfoMapper extends BaseMapper<MdcEquipmentFaultInfo> {
 
    List<EquFaultRecord> findFaultRecord(@Param("equipmentIdList") List<String> equipmentIdList, @Param("startTime") String startTime, @Param("endTime") String endTime);
}