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
36 lines
1.2 KiB
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.mapper;
|
||
|
|
|
||
|
|
import com.sztzjy.linkCommerce.entity.CpyxdwStuAnswer;
|
||
|
|
import com.sztzjy.linkCommerce.entity.CpyxdwStuAnswerExample;
|
||
|
|
import java.util.List;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
public interface CpyxdwStuAnswerMapper {
|
||
|
|
long countByExample(CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
int deleteByExample(CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
int deleteByPrimaryKey(String id);
|
||
|
|
|
||
|
|
int insert(CpyxdwStuAnswer record);
|
||
|
|
|
||
|
|
int insertSelective(CpyxdwStuAnswer record);
|
||
|
|
|
||
|
|
List<CpyxdwStuAnswer> selectByExampleWithBLOBs(CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
List<CpyxdwStuAnswer> selectByExample(CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
CpyxdwStuAnswer selectByPrimaryKey(String id);
|
||
|
|
|
||
|
|
int updateByExampleSelective(@Param("record") CpyxdwStuAnswer record, @Param("example") CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
int updateByExampleWithBLOBs(@Param("record") CpyxdwStuAnswer record, @Param("example") CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
int updateByExample(@Param("record") CpyxdwStuAnswer record, @Param("example") CpyxdwStuAnswerExample example);
|
||
|
|
|
||
|
|
int updateByPrimaryKeySelective(CpyxdwStuAnswer record);
|
||
|
|
|
||
|
|
int updateByPrimaryKeyWithBLOBs(CpyxdwStuAnswer record);
|
||
|
|
|
||
|
|
int updateByPrimaryKey(CpyxdwStuAnswer record);
|
||
|
|
}
|