| 123456789101112131415161718192021222324 |
- package com.fdkankan.scene.service;
- import javax.servlet.http.HttpServletResponse;
- import org.springframework.web.multipart.MultipartFile;
- /**
- * <p>
- * TODO
- * </p>
- *
- * @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;
- }
|