You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
673 B
24 lines
673 B
package com.qniao.zsh.query.spider;
|
|
|
|
|
|
import com.qniao.zsh.domain.aggregate.spiderstate.entity.SpiderState;
|
|
import com.qniao.zsh.query.spider.queryparams.SpiderByQueryParam;
|
|
import org.mc.ddd.infrastructure.persistent.PageQueryParams;
|
|
import org.mc.ddd.infrastructure.persistent.PageQueryResult;
|
|
|
|
|
|
/**
|
|
* @author wh
|
|
* @date 2023/3/13
|
|
*/
|
|
|
|
public interface SpiderQueryService {
|
|
/**
|
|
* admin页面
|
|
*
|
|
* @param pageUtil 分页参数
|
|
* @param spiderState 爬虫实体
|
|
* @return {@link PageQueryResult}
|
|
*/
|
|
PageQueryResult<SpiderState> adminPage(PageQueryParams pageUtil, SpiderState spiderState, SpiderByQueryParam spiderByQueryParam);
|
|
}
|