PeSjdwspMapper.java 874 B

123456789101112131415161718192021222324252627282930
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.model.PeSjdwsp;
  3. import com.ghsc.partybuild.model.PeSjdwspExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface PeSjdwspMapper {
  7. long countByExample(PeSjdwspExample example);
  8. int deleteByExample(PeSjdwspExample example);
  9. int deleteByPrimaryKey(String id);
  10. int insert(PeSjdwsp record);
  11. int insertSelective(PeSjdwsp record);
  12. List<PeSjdwsp> selectByExample(PeSjdwspExample example);
  13. PeSjdwsp selectByPrimaryKey(String id);
  14. int updateByExampleSelective(@Param("record") PeSjdwsp record, @Param("example") PeSjdwspExample example);
  15. int updateByExample(@Param("record") PeSjdwsp record, @Param("example") PeSjdwspExample example);
  16. int updateByPrimaryKeySelective(PeSjdwsp record);
  17. int updateByPrimaryKey(PeSjdwsp record);
  18. }