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