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