123456789101112131415161718192021222324252627282930 |
- package com.hz.employmentsite.mapper;
- import com.hz.employmentsite.model.PcJobhunt;
- import com.hz.employmentsite.model.PcJobhuntExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface PcJobhuntMapper {
- long countByExample(PcJobhuntExample example);
- int deleteByExample(PcJobhuntExample example);
- int deleteByPrimaryKey(String jobHuntID);
- int insert(PcJobhunt row);
- int insertSelective(PcJobhunt row);
- List<PcJobhunt> selectByExample(PcJobhuntExample example);
- PcJobhunt selectByPrimaryKey(String jobHuntID);
- int updateByExampleSelective(@Param("row") PcJobhunt row, @Param("example") PcJobhuntExample example);
- int updateByExample(@Param("row") PcJobhunt row, @Param("example") PcJobhuntExample example);
- int updateByPrimaryKeySelective(PcJobhunt row);
- int updateByPrimaryKey(PcJobhunt row);
- }
|