DjDnghbfMapper.java 874 B

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