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