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