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
26
27
28
package com.whyc.mapper;
 
import com.whyc.dto.BattState;
import com.whyc.dto.Batt_Maint_Dealarm;
import com.whyc.pojo.BattRtstate;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
 
@Repository
public interface BattRtstateMapper extends CustomMapper<BattRtstate> {
 
    int deleteByPrimaryKey(Long num);
 
    int insert(BattRtstate record);
 
    int insertSelective(BattRtstate record);
 
    BattRtstate selectByPrimaryKey(Long num);
 
    int updateByPrimaryKeySelective(BattRtstate record);
 
    int updateByPrimaryKey(BattRtstate record);
 
    //电池组实时情况+实时电池续航能力查询
    List<BattState> searchBattLife(Batt_Maint_Dealarm bmd);
}