chenhj
3 天以前 8ec375a6fab78e088b3c05e550c0581c9c57152e
src/main/java/com/ruoyi/other/service/TempFileService.java
@@ -4,9 +4,12 @@
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
import java.util.List;
public interface TempFileService {
    TempFile uploadFile(MultipartFile file,Integer type) throws IOException;
    String uploadByCommon(MultipartFile file, Integer type, Long id) throws IOException;
    void migrateTempFilesToFormal(Long businessId, List<String> tempFileIds, Integer fileType) throws IOException;
}