PeZlgdMapper.java 842 B

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