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