| 1234567891011121314151617181920 |
- package top.lvzhiqiang.service;
- import java.util.Map;
- /**
- * Crawler Javbus Service
- *
- * @author lvzhiqiang
- * 2022/10/17 14:47
- */
- public interface Crawler4JavbusService {
- void jsoupJavbusProfile(Long start, Integer limit) throws Exception;
- void handleJavbusLog(Integer status) throws Exception;
- String findJavbusProfile(String keyword, Integer timeDay, Integer pic, String orderField, String order, Integer pageNo, Integer pageSize);
- Map<String,String> getJavbusCookiesMap() throws Exception;
- }
|