IFileConvertService.java 551 B

123456789101112131415161718192021222324
  1. package com.fdkankan.scene.service;
  2. import javax.servlet.http.HttpServletResponse;
  3. import org.springframework.web.multipart.MultipartFile;
  4. /**
  5. * <p>
  6. * TODO
  7. * </p>
  8. *
  9. * @author dengsixing
  10. * @since 2022/5/17
  11. **/
  12. public interface IFileConvertService {
  13. void convertTxtToModeldata(MultipartFile file, HttpServletResponse response) throws Exception;
  14. void convertTxtToDam(MultipartFile file, HttpServletResponse response) throws Exception;
  15. void convertTxtToLzma(MultipartFile file, HttpServletResponse response) throws Exception;
  16. }