yaowanxin
2 天以前 d09f76ca1ffd2ab091c14327b8e50d92dfa1df7e
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;
}