package com.example.myproject.service; | |
import com.example.myproject.entity.TorrentEntity; | |
import java.util.List; | |
public interface PopularSeedService { | |
List<TorrentEntity> getPopularSeeds(int limit); | |
List<TorrentEntity> getRecommendedSeeds(Long userId); // 假设接口中是这个方法 | |
} |