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.
30 lines
952 B
Java
30 lines
952 B
Java
package com.sztzjy.linkCommerce.mapper;
|
|
|
|
import com.sztzjy.linkCommerce.entity.CpbxfxAnswer;
|
|
import com.sztzjy.linkCommerce.entity.CpbxfxAnswerExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface CpbxfxAnswerMapper {
|
|
long countByExample(CpbxfxAnswerExample example);
|
|
|
|
int deleteByExample(CpbxfxAnswerExample example);
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
int insert(CpbxfxAnswer record);
|
|
|
|
int insertSelective(CpbxfxAnswer record);
|
|
|
|
List<CpbxfxAnswer> selectByExample(CpbxfxAnswerExample example);
|
|
|
|
CpbxfxAnswer selectByPrimaryKey(String id);
|
|
|
|
int updateByExampleSelective(@Param("record") CpbxfxAnswer record, @Param("example") CpbxfxAnswerExample example);
|
|
|
|
int updateByExample(@Param("record") CpbxfxAnswer record, @Param("example") CpbxfxAnswerExample example);
|
|
|
|
int updateByPrimaryKeySelective(CpbxfxAnswer record);
|
|
|
|
int updateByPrimaryKey(CpbxfxAnswer record);
|
|
} |