FileServer.java 897 B

12345678910111213141516171819202122232425262728293031323334
  1. //package com.fd.server;
  2. //
  3. //import com.fd.dto.PageDto;
  4. //import com.fd.entity.FileEntity;
  5. //import com.fd.util.R;
  6. //import org.springframework.web.multipart.MultipartFile;
  7. //
  8. //import javax.servlet.http.HttpServletResponse;
  9. //
  10. ///**
  11. // * Created by Owen on 2019/11/12 0012 10:04
  12. // */
  13. //public interface FileServer {
  14. //
  15. // // 大文件上传
  16. // R uploadBigFile(MultipartFile file, String type);
  17. //
  18. // // 小文件上传
  19. // R uploadFile(MultipartFile file, String directoryName, String type);
  20. //
  21. // R findByType(String param, PageDto pageDto);
  22. //
  23. // R findByType(String type1, String type2, PageDto pageDto);
  24. //
  25. // R deleteById(Long fileId);
  26. //
  27. // Integer getGeoData(HttpServletResponse response, String filePath);
  28. //
  29. // FileEntity findById(Long fileId);
  30. //
  31. // FileEntity save(FileEntity entity);
  32. //
  33. // R uploadRasterBigFile(MultipartFile file, String type);
  34. //}