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