PcPostMapper.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package com.hz.employmentsite.mapper;
  2. import com.hz.employmentsite.model.PcPost;
  3. import com.hz.employmentsite.model.PcPostExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface PcPostMapper {
  7. long countByExample(PcPostExample example);
  8. int deleteByExample(PcPostExample example);
  9. int deleteByPrimaryKey(String postID);
  10. int insert(PcPost row);
  11. int insertSelective(PcPost row);
  12. List<PcPost> selectByExampleWithBLOBs(PcPostExample example);
  13. List<PcPost> selectByExample(PcPostExample example);
  14. PcPost selectByPrimaryKey(String postID);
  15. int updateByExampleSelective(@Param("row") PcPost row, @Param("example") PcPostExample example);
  16. int updateByExampleWithBLOBs(@Param("row") PcPost row, @Param("example") PcPostExample example);
  17. int updateByExample(@Param("row") PcPost row, @Param("example") PcPostExample example);
  18. int updateByPrimaryKeySelective(PcPost row);
  19. int updateByPrimaryKeyWithBLOBs(PcPost row);
  20. int updateByPrimaryKey(PcPost row);
  21. }