package com.gkhy.safePlatform.doublePrevention.service; import com.gkhy.safePlatform.commons.co.ContextCacheUser; import com.gkhy.safePlatform.commons.vo.ResultVO; import com.gkhy.safePlatform.doublePrevention.entity.PreventProduceDevice; import com.gkhy.safePlatform.doublePrevention.entity.PreventRiskAnaUnit; import com.gkhy.safePlatform.doublePrevention.entity.PreventRiskControlMeasure; import com.gkhy.safePlatform.doublePrevention.entity.PreventRiskEvent; import org.springframework.web.multipart.MultipartFile; public interface FileHandlerService { /** * 生产装置-导入 */ ResultVO deviceImport(ContextCacheUser currentUser, MultipartFile file); /** * 风险分析单元-导入 */ ResultVO riskUnitImport(ContextCacheUser currentUser, MultipartFile file); /** * 安全风险事件-导入 */ ResultVO eventImport(ContextCacheUser currentUser, MultipartFile file); /** * 管控措施-导入 */ ResultVO measureImport(ContextCacheUser currentUser, MultipartFile file); }