whyczh
2021-12-08 3f68c6a5a9968cbfd955e958742d38e5ded682c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.whyc.mapper;
 
import com.whyc.pojo.BattRtstate;
import com.whyc.pojo.BatttestdataInf;
 
public interface BatttestdataInfMapper extends CustomMapper<BattRtstate>{
    int deleteByPrimaryKey(Long num);
 
    int insert(BatttestdataInf record);
 
    int insertSelective(BatttestdataInf record);
 
    BatttestdataInf selectByPrimaryKey(Long num);
 
    int updateByPrimaryKeySelective(BatttestdataInf record);
 
    int updateByPrimaryKey(BatttestdataInf record);
}