管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-19 e6e00736db2e3c11607f8ae3d92d790423b0d3e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.lf.server.service.show;
 
import com.lf.server.helper.PathHelper;
import com.lf.server.service.data.DownloadService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * 资料馆
 * @author WWW
 */
@Service
public class DataLibService {
    @Autowired
    PathHelper pathHelper;
 
    @Autowired
    DownloadService downloadService;
}