mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
30 lines
936 B
Java
30 lines
936 B
Java
package xyz.zinglizingli.books.mapper;
|
|
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import xyz.zinglizingli.books.po.BookParseLog;
|
|
import xyz.zinglizingli.books.po.BookParseLogExample;
|
|
|
|
public interface BookParseLogMapper {
|
|
int countByExample(BookParseLogExample example);
|
|
|
|
int deleteByExample(BookParseLogExample example);
|
|
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
int insert(BookParseLog record);
|
|
|
|
int insertSelective(BookParseLog record);
|
|
|
|
List<BookParseLog> selectByExample(BookParseLogExample example);
|
|
|
|
BookParseLog selectByPrimaryKey(Long id);
|
|
|
|
int updateByExampleSelective(@Param("record") BookParseLog record, @Param("example") BookParseLogExample example);
|
|
|
|
int updateByExample(@Param("record") BookParseLog record, @Param("example") BookParseLogExample example);
|
|
|
|
int updateByPrimaryKeySelective(BookParseLog record);
|
|
|
|
int updateByPrimaryKey(BookParseLog record);
|
|
} |