22301102 | b108437 | 2025-06-01 16:44:23 +0800 | [diff] [blame^] | 1 | package com.pt.service; |
2 | |||||
3 | import com.pt.repository.DownloadRepository; | ||||
4 | import org.springframework.beans.factory.annotation.Autowired; | ||||
5 | import org.springframework.stereotype.Service; | ||||
6 | |||||
7 | @Service | ||||
8 | public class DownloadService { | ||||
9 | |||||
10 | @Autowired | ||||
11 | private DownloadRepository downloadRepository; | ||||
12 | |||||
13 | public DownloadService(DownloadRepository downloadRepository) { | ||||
14 | this.downloadRepository = downloadRepository; | ||||
15 | } | ||||
16 | |||||
17 | /* | ||||
18 | TODO: 添加下载需要的服务; | ||||
19 | */ | ||||
20 | } |