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);
|
}
|