package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.model.QuestionSubjectKnowledgePoint; import com.farriver.bwf.data.master.model.QuestionSubjectKnowledgePointExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface QuestionSubjectKnowledgePointMapper { long countByExample(QuestionSubjectKnowledgePointExample example); int deleteByExample(QuestionSubjectKnowledgePointExample example); int deleteByPrimaryKey(String id); int insert(QuestionSubjectKnowledgePoint record); int insertSelective(QuestionSubjectKnowledgePoint record); List selectByExample(QuestionSubjectKnowledgePointExample example); QuestionSubjectKnowledgePoint selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") QuestionSubjectKnowledgePoint record, @Param("example") QuestionSubjectKnowledgePointExample example); int updateByExample(@Param("record") QuestionSubjectKnowledgePoint record, @Param("example") QuestionSubjectKnowledgePointExample example); int updateByPrimaryKeySelective(QuestionSubjectKnowledgePoint record); int updateByPrimaryKey(QuestionSubjectKnowledgePoint record); }