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