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