SrSaerchtempMapper.java 928 B

123456789101112131415161718192021222324252627282930
  1. package com.bowintek.practice.mapper;
  2. import com.bowintek.practice.model.SrSaerchtemp;
  3. import com.bowintek.practice.model.SrSaerchtempExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface SrSaerchtempMapper {
  7. long countByExample(SrSaerchtempExample example);
  8. int deleteByExample(SrSaerchtempExample example);
  9. int deleteByPrimaryKey(String tempId);
  10. int insert(SrSaerchtemp row);
  11. int insertSelective(SrSaerchtemp row);
  12. List<SrSaerchtemp> selectByExample(SrSaerchtempExample example);
  13. SrSaerchtemp selectByPrimaryKey(String tempId);
  14. int updateByExampleSelective(@Param("row") SrSaerchtemp row, @Param("example") SrSaerchtempExample example);
  15. int updateByExample(@Param("row") SrSaerchtemp row, @Param("example") SrSaerchtempExample example);
  16. int updateByPrimaryKeySelective(SrSaerchtemp row);
  17. int updateByPrimaryKey(SrSaerchtemp row);
  18. }