blob: 284be5a64de46308ee812aa0da93304596173a88 [file] [log] [blame]
22301102b1084372025-06-01 16:44:23 +08001package com.pt.service;
2
3import com.pt.repository.DownloadRepository;
4import org.springframework.beans.factory.annotation.Autowired;
5import org.springframework.stereotype.Service;
6
7@Service
8public 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}