1优化es导入策略,2增加默认图片,在读取网络图片失败时设置,防止一直失败重试

This commit is contained in:
xiongxiaoyang
2020-05-21 08:16:37 +08:00
parent 0144b77983
commit a13ea78c3f
5 changed files with 61 additions and 37 deletions

View File

@ -231,10 +231,8 @@ public interface BookService {
/**
* 根据更新时间分页查询书籍列表
* @param startDate 开始时间,包括该时间
* @param endDate 结束时间,不包括该时间
* @param page 页码
* @param pageSize 每页数量
* @param limit 查询数量
* @return 书籍列表
* */
List<Book> queryBookByUpdateTimeByPage(Date startDate, Date endDate, int page, int pageSize);
List<Book> queryBookByUpdateTimeByPage(Date startDate, int limit);
}