package com.yyt.moviecrawler.strategy; import com.yyt.moviecrawler.model.Movie; import java.util.List; public interface CrawlerStrategy { // 统一方法签名:接收 limit 参数,返回 List List crawl(int limit); }