You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.3 KiB
Java

1 year ago
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<SubjectiveQuestions> selectByExampleWithBLOBs(SubjectiveQuestionsExample example);
List<SubjectiveQuestions> 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);
}