rzg
2020-10-22 d293563af43409590172f534a74c5a5cb72ecb04
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
34
35
package com.yckj.dao;
 
import com.yckj.bean.TbBattdataRt;
import com.yckj.bean.TbBattdataRtExample;
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Repository
@Mapper
public interface TbBattdataRtDao {
    long countByExample(TbBattdataRtExample example);
 
    int deleteByExample(TbBattdataRtExample example);
 
    int deleteByPrimaryKey(Long num);
 
    int insert(TbBattdataRt record);
 
    int insertSelective(TbBattdataRt record);
 
    List<TbBattdataRt> selectByExample(TbBattdataRtExample example);
 
    TbBattdataRt selectByPrimaryKey(Long num);
 
    int updateByExampleSelective(@Param("record") TbBattdataRt record, @Param("example") TbBattdataRtExample example);
 
    int updateByExample(@Param("record") TbBattdataRt record, @Param("example") TbBattdataRtExample example);
 
    int updateByPrimaryKeySelective(TbBattdataRt record);
 
    int updateByPrimaryKey(TbBattdataRt record);
}