PcRecommendMgtMapper.java 976 B

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