whyczh
2021-12-08 3f68c6a5a9968cbfd955e958742d38e5ded682c5
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
package com.whyc.mapper;
 
import com.whyc.dto.Batt_Maint_Dealarm;
import com.whyc.dto.paramter.BattinfPar;
import com.whyc.pojo.BadbattMon;
import com.whyc.pojo.BattRtstate;
 
import java.util.List;
 
public interface BadbattMonMapper extends CustomMapper<BadbattMon>{
    int deleteByPrimaryKey(Integer num);
 
    int insert(BadbattMon record);
 
    int insertSelective(BadbattMon record);
 
    BadbattMon selectByPrimaryKey(Integer num);
 
    int updateByPrimaryKeySelective(BadbattMon record);
 
    int updateByPrimaryKey(BadbattMon record);
 
    //落后单体查询:根据条件查询落后单体(用户管理的电池组)
    List<Batt_Maint_Dealarm> searchByInfo(BattinfPar battinfPar);
}