package com.hz.employmentsite.mapper; import com.hz.employmentsite.model.PcPost; import com.hz.employmentsite.model.PcPostExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface PcPostMapper { long countByExample(PcPostExample example); int deleteByExample(PcPostExample example); int deleteByPrimaryKey(String postID); int insert(PcPost row); int insertSelective(PcPost row); List selectByExampleWithBLOBs(PcPostExample example); List selectByExample(PcPostExample example); PcPost selectByPrimaryKey(String postID); int updateByExampleSelective(@Param("row") PcPost row, @Param("example") PcPostExample example); int updateByExampleWithBLOBs(@Param("row") PcPost row, @Param("example") PcPostExample example); int updateByExample(@Param("row") PcPost row, @Param("example") PcPostExample example); int updateByPrimaryKeySelective(PcPost row); int updateByPrimaryKeyWithBLOBs(PcPost row); int updateByPrimaryKey(PcPost row); }