...
|
...
|
@@ -41,9 +41,9 @@ public class TblCrawlerArticleController { |
|
|
return new ApiResponse.ApiResponseBuilder().data(tblCrawlerInfoService.queryTblCrawlerInfo(req)).build();
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/modifyStatus")
|
|
|
public ApiResponse modifyStatus(TblCrawlerInfo req){
|
|
|
logger.info("tblCrawlerArticle queryTblCrawlerArticle begin, req is {}",req);
|
|
|
@RequestMapping("/modifyTblCrawlerArticleStatus")
|
|
|
public ApiResponse modifyTblCrawlerArticleStatus(TblCrawlerInfo req){
|
|
|
logger.info("enter modifyTblCrawlerArticleStatus begin, req is {}",req);
|
|
|
tblCrawlerInfoService.modifyStatus(req);
|
|
|
return new ApiResponse.ApiResponseBuilder().build();
|
|
|
}
|
...
|
...
|
|