package org.jeecg.modules.mdc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.mdc.entity.MdcEquipmentFaultInfo; 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 { List findFaultRecord(@Param("equipmentIdList") List equipmentIdList, @Param("startTime") String startTime, @Param("endTime") String endTime); String getMaxStaticsData(); }