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