package com.hz.employmentsite.mapper; import com.hz.employmentsite.model.PcRecommendMgt; import com.hz.employmentsite.model.PcRecommendMgtExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface PcRecommendMgtMapper { long countByExample(PcRecommendMgtExample example); int deleteByExample(PcRecommendMgtExample example); int deleteByPrimaryKey(String recommendMgtID); int insert(PcRecommendMgt row); int insertSelective(PcRecommendMgt row); List selectByExample(PcRecommendMgtExample example); PcRecommendMgt selectByPrimaryKey(String recommendMgtID); int updateByExampleSelective(@Param("row") PcRecommendMgt row, @Param("example") PcRecommendMgtExample example); int updateByExample(@Param("row") PcRecommendMgt row, @Param("example") PcRecommendMgtExample example); int updateByPrimaryKeySelective(PcRecommendMgt row); int updateByPrimaryKey(PcRecommendMgt row); }