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