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.2 KiB
Java

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