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