package com.sztzjy.linkCommerce.mapper; import com.sztzjy.linkCommerce.entity.SubjectiveQuestions; import com.sztzjy.linkCommerce.entity.SubjectiveQuestionsExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SubjectiveQuestionsMapper { long countByExample(SubjectiveQuestionsExample example); int deleteByExample(SubjectiveQuestionsExample example); int deleteByPrimaryKey(String id); int insert(SubjectiveQuestions record); int insertSelective(SubjectiveQuestions record); List selectByExampleWithBLOBs(SubjectiveQuestionsExample example); List selectByExample(SubjectiveQuestionsExample example); SubjectiveQuestions selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") SubjectiveQuestions record, @Param("example") SubjectiveQuestionsExample example); int updateByExampleWithBLOBs(@Param("record") SubjectiveQuestions record, @Param("example") SubjectiveQuestionsExample example); int updateByExample(@Param("record") SubjectiveQuestions record, @Param("example") SubjectiveQuestionsExample example); int updateByPrimaryKeySelective(SubjectiveQuestions record); int updateByPrimaryKeyWithBLOBs(SubjectiveQuestions record); int updateByPrimaryKey(SubjectiveQuestions record); }