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.CpdjStuAnswer;
import com.sztzjy.linkCommerce.entity.CpdjStuAnswerExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface CpdjStuAnswerMapper {
long countByExample(CpdjStuAnswerExample example);
int deleteByExample(CpdjStuAnswerExample example);
int deleteByPrimaryKey(String id);
int insert(CpdjStuAnswer record);
int insertSelective(CpdjStuAnswer record);
List<CpdjStuAnswer> selectByExampleWithBLOBs(CpdjStuAnswerExample example);
List<CpdjStuAnswer> selectByExample(CpdjStuAnswerExample example);
CpdjStuAnswer selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") CpdjStuAnswer record, @Param("example") CpdjStuAnswerExample example);
int updateByExampleWithBLOBs(@Param("record") CpdjStuAnswer record, @Param("example") CpdjStuAnswerExample example);
int updateByExample(@Param("record") CpdjStuAnswer record, @Param("example") CpdjStuAnswerExample example);
int updateByPrimaryKeySelective(CpdjStuAnswer record);
int updateByPrimaryKeyWithBLOBs(CpdjStuAnswer record);
int updateByPrimaryKey(CpdjStuAnswer record);
}