whycrzg
2021-11-19 c6638fd3fe9dd6d4cf8a038e96d6e36d9adf01cd
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);
}