whyclxw
2024-06-27 2eff7304df15f463dcd4563c0c62f4531bbef138
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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<BattAlarm>{
    //查询电池告警
    List<BattAlarm> getBattAlarm(int almLevel, Date startTime, Date endTime);
    //在用电池组实时推送告警信息
    List<BattAlarm> getResBattAlm(int binfId);
}