You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
585 B
23 lines
585 B
1 year ago
|
package com.teaching.backend.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.teaching.backend.model.entity.FileTable;
|
||
|
|
||
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
||
|
/**
|
||
|
* ClassName: FileTableService
|
||
|
* Package: com.teaching.backend.service
|
||
|
* Description:
|
||
|
*
|
||
|
* @Author 姜钧瀚
|
||
|
* @Create 2024/6/4 11:49
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public interface FileTableService extends IService<FileTable> {
|
||
|
void updateFile(String courseId, String fileName, String filePath);
|
||
|
|
||
|
|
||
|
void download(String courseId, HttpServletResponse response, String basePath);
|
||
|
}
|