Krishya | b0cc188 | 2025-06-09 10:54:09 +0800 | [diff] [blame] | 1 | package com.example.myproject.service; |
2 | |||||
3 | import com.example.myproject.entity.TorrentEntity; | ||||
4 | |||||
5 | import java.util.List; | ||||
6 | |||||
7 | public interface PopularSeedService { | ||||
8 | List<TorrentEntity> getPopularSeeds(int limit); | ||||
9 | List<TorrentEntity> getRecommendedSeeds(Long userId); // 假设接口中是这个方法 | ||||
10 | } |