lishenao
2 天以前 fbc53e77f994f15c3ebcd4fa07dfd23671c0ce26
1
2
3
4
5
6
7
8
9
10
package com.ruoyi.other.service;
 
import com.ruoyi.other.pojo.TempFile;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
 
public interface TempFileService {
    TempFile uploadFile(MultipartFile file,Integer type) throws IOException;
}