package com.fdkankan.scene.service; import javax.servlet.http.HttpServletResponse; import org.springframework.web.multipart.MultipartFile; /** *
* TODO *
* * @author dengsixing * @since 2022/5/17 **/ public interface IFileConvertService { void convertTxtToModeldata(MultipartFile file, HttpServletResponse response) throws Exception; void convertTxtToDam(MultipartFile file, HttpServletResponse response) throws Exception; void convertTxtToLzma(MultipartFile file, HttpServletResponse response) throws Exception; }