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;
|
}
|