liyong
2025-06-30 a508511946c4b2c8aed6cf6eedf0df7659807a06
src/main/java/com/ruoyi/other/controller/TempFileController.java
@@ -18,10 +18,10 @@
    private TempFileService tempFileService;
    @PostMapping("/upload")
    public AjaxResult uploadFile(MultipartFile file) {
    public AjaxResult uploadFile(MultipartFile file, Integer type) {
        try {
            return AjaxResult.success(tempFileService.uploadFile(file));
        }catch (Exception e) {
            return AjaxResult.success(tempFileService.uploadFile(file, type));
        } catch (Exception e) {
            return AjaxResult.error(e.getMessage());
        }
    }