12345678910111213141516171819202122232425262728293031323334 |
- //package com.fd.server;
- //
- //import com.fd.dto.PageDto;
- //import com.fd.entity.FileEntity;
- //import com.fd.util.R;
- //import org.springframework.web.multipart.MultipartFile;
- //
- //import javax.servlet.http.HttpServletResponse;
- //
- ///**
- // * Created by Owen on 2019/11/12 0012 10:04
- // */
- //public interface FileServer {
- //
- // // 大文件上传
- // R uploadBigFile(MultipartFile file, String type);
- //
- // // 小文件上传
- // R uploadFile(MultipartFile file, String directoryName, String type);
- //
- // R findByType(String param, PageDto pageDto);
- //
- // R findByType(String type1, String type2, PageDto pageDto);
- //
- // R deleteById(Long fileId);
- //
- // Integer getGeoData(HttpServletResponse response, String filePath);
- //
- // FileEntity findById(Long fileId);
- //
- // FileEntity save(FileEntity entity);
- //
- // R uploadRasterBigFile(MultipartFile file, String type);
- //}
|