PcJobhuntMapper.java 886 B

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