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