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