21 lines
391 B
Plaintext
21 lines
391 B
Plaintext
|
|
package com.securityControl.file.service;
|
||
|
|
|
||
|
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 文件上传接口
|
||
|
|
*
|
||
|
|
* @author czc
|
||
|
|
*/
|
||
|
|
public interface ISysFileService
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 文件上传接口
|
||
|
|
*
|
||
|
|
* @param file 上传的文件
|
||
|
|
* @return 访问地址
|
||
|
|
* @throws Exception
|
||
|
|
*/
|
||
|
|
public String uploadFile(MultipartFile file) throws Exception;
|
||
|
|
}
|