123456789101112131415161718192021222324252627282930313233343536 |
- 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<PcPost> selectByExampleWithBLOBs(PcPostExample example);
- List<PcPost> 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);
- }
|