liding
2026-03-16 3322c20909d2cc762b9a7a4a4c8b2bb728ebebd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.other.service;
 
import com.ruoyi.other.pojo.TempFile;
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;
}