PubDzzfcMapper.java 874 B

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