gongchunyi
2 天以前 1a294d282c4ddaf73c046ab690e65d5ccc646e92
1
2
3
4
5
6
7
8
9
10
11
12
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;
 
    String uploadByCommon(MultipartFile file, Integer type, Long id) throws IOException;
}