package com.whyc.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.whyc.pojo.BattAlarm; import java.util.Date; import java.util.List; public interface BattAlarmMapper extends CustomMapper{ //查询电池告警 List getBattAlarm(int almLevel, Date startTime, Date endTime); //在用电池组实时推送告警信息 List getResBattAlm(int binfId); //查询电池告警(2024。4.15修改) List getAlm2(Integer battGroupId); }