huminmin
2026-06-02 e18e4614ec036b8fa6f130f51fd19e24280a51d0
src/main/java/com/ruoyi/device/service/DeviceMaintenanceFileService.java
@@ -1,7 +1,11 @@
package com.ruoyi.device.service;
import com.ruoyi.device.pojo.DeviceMaintenanceFile;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.device.pojo.DeviceMaintenanceFile;
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
import java.util.List;
/**
 * <p>
@@ -13,4 +17,11 @@
 */
public interface DeviceMaintenanceFileService extends IService<DeviceMaintenanceFile> {
    DeviceMaintenanceFile uploadFile(MultipartFile file, Integer deviceMaintenanceId) throws IOException;
    DeviceMaintenanceFile bindFromTemp(String tempId, Integer deviceMaintenanceId, String name) throws IOException;
    DeviceMaintenanceFile saveRecord(DeviceMaintenanceFile deviceMaintenanceFile) throws IOException;
    void enrichAccessUrl(List<DeviceMaintenanceFile> files);
}