IBatchDonloadService.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.fdkankan.download.service;
  2. import com.fdkankan.download.bean.ResultData;
  3. import org.springframework.web.bind.annotation.RequestParam;
  4. import org.springframework.web.multipart.MultipartFile;
  5. import java.util.Map;
  6. import java.util.Set;
  7. /**
  8. * <p>
  9. * 用户信息表 服务类
  10. * </p>
  11. *
  12. * @author
  13. * @since 2022-07-05
  14. */
  15. public interface IBatchDonloadService {
  16. public ResultData bacthDownload(@RequestParam(value = "file") MultipartFile file) throws Exception;
  17. ResultData getDownloadDetail(@RequestParam(value = "id") String uuid) throws Exception;
  18. public void downloadHandler(String uuid, Set<String> numSet, Map<String, Object> headers, String dir, String downloadingLog, String downloadResultLog);
  19. public ResultData bacthDownloadByLocal(@RequestParam(value = "file") MultipartFile file) throws Exception;
  20. public ResultData downloadImgViewWithoutTiles(@RequestParam(value = "file") MultipartFile file) throws Exception;
  21. public ResultData downloadMeshScene(@RequestParam(value = "file") MultipartFile file, String version) throws Exception;
  22. public ResultData downloadLaserScene(@RequestParam(value = "file") MultipartFile file) throws Exception;
  23. }