lxw
2022-12-23 0f3ee7675fa1f95203393dba2fcee4257fc4fbdb
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
26
27
28
29
30
31
32
33
package com.whyc.mapper;
 
import com.whyc.dto.BattMaintDealarm;
import com.whyc.dto.paramter.BattinfPar;
import com.whyc.dto.result.ReportBattBadDTO;
import com.whyc.pojo.BadbattMon;
import com.whyc.pojo.BattMapInformation;
import org.apache.ibatis.annotations.Param;
 
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<ReportBattBadDTO> searchByInfo(@Param("binf") BattinfPar battinfPar, @Param("uId")int uId);
 
    int searchNums(int uid);
 
    int getBadCountByStationId(String stationId);
 
    List<BattMapInformation> findBehind();
}