资源下载链路打通
This commit is contained in:
22
src/main/java/com/quinn/service/SourceService.java
Normal file
22
src/main/java/com/quinn/service/SourceService.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package com.quinn.service;
|
||||
|
||||
import com.quinn.pojo.Source;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
import javax.servlet.ServletOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author limqsh
|
||||
* @since 2022-05-03
|
||||
*/
|
||||
public interface SourceService extends IService<Source> {
|
||||
|
||||
void downloadSource(ServletOutputStream outputStream, String sid) throws IOException;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user