123456789101112131415161718192021222324252627282930 |
- package com.bowintek.practice.mapper;
- import com.bowintek.practice.model.SrSaerchtemp;
- import com.bowintek.practice.model.SrSaerchtempExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface SrSaerchtempMapper {
- long countByExample(SrSaerchtempExample example);
- int deleteByExample(SrSaerchtempExample example);
- int deleteByPrimaryKey(String tempId);
- int insert(SrSaerchtemp row);
- int insertSelective(SrSaerchtemp row);
- List<SrSaerchtemp> selectByExample(SrSaerchtempExample example);
- SrSaerchtemp selectByPrimaryKey(String tempId);
- int updateByExampleSelective(@Param("row") SrSaerchtemp row, @Param("example") SrSaerchtempExample example);
- int updateByExample(@Param("row") SrSaerchtemp row, @Param("example") SrSaerchtempExample example);
- int updateByPrimaryKeySelective(SrSaerchtemp row);
- int updateByPrimaryKey(SrSaerchtemp row);
- }
|