123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.yihu.ehr.fileresource.service;
- import com.yihu.ehr.constants.ApiVersion;
- import com.yihu.ehr.constants.MicroServices;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.cloud.netflix.feign.FeignClient;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RequestParam;
- import java.util.List;
- /**
- * @author linaz
- * @created 2016.05.11 11:32
- */
- @FeignClient(name = MicroServices.FileResource)
- public interface FileResourceClient {
- @RequestMapping(value = ApiVersion.Version1_0 + "/files_upload", method = RequestMethod.POST)
- @ApiOperation(value = "上传文件")
- String fileUpload(
- @RequestBody String fileStr,
- @RequestParam(value = "file_name") String fileName,
- @RequestParam(value = "json_data") String jsonData);
- @RequestMapping(value = ApiVersion.Version1_0 + "/files_upload_returnUrl", method = RequestMethod.POST)
- @ApiOperation(value = "上传文件,并返回存储相对路径")
- String fileUploadReturnUrl(
- @RequestBody String fileStr,
- @RequestParam(value = "file_name") String fileName,
- @RequestParam(value = "json_data") String jsonData);
- @RequestMapping(value = ApiVersion.Version1_0 + "/files_upload_returnHttpUrl", method = RequestMethod.POST)
- @ApiOperation(value = "上传文件,并返回存储绝对路径")
- String fileUploadReturnHttpUrl(
- @RequestBody String fileStr,
- @RequestParam(value = "file_name") String fileName,
- @RequestParam(value = "json_data") String jsonData);
- @RequestMapping(value = ApiVersion.Version1_0 + "/files", method = RequestMethod.DELETE)
- @ApiOperation(value = "删除资源表对应关系,并且删除fastdfs相对应当文件")
- boolean filesDelete(
- @RequestParam(value = "object_id") String objectId);
- @RequestMapping(value = ApiVersion.Version1_0 + "/files_download", method = RequestMethod.GET)
- @ApiOperation(value = "下载文件")
- List<String> filesDownload(
- @RequestParam(value = "object_id") String objectId,
- @RequestParam(value = "mime", required = false) String mime);
- @RequestMapping(value = ApiVersion.Version1_0 + "/image_view", method = RequestMethod.GET)
- @ApiOperation(value = "查看图片")
- String imageView(
- @RequestParam(value = "storagePath") String storagePath);
- @RequestMapping(value = ApiVersion.Version1_0 + "/files_path", method = RequestMethod.GET)
- @ApiOperation(value = "获取文件路径")
- List<String> filesPath(
- @RequestParam(value = "object_id") String objectId);
- @RequestMapping(value = ApiVersion.Version1_0 + "/image_delete", method = RequestMethod.DELETE)
- @ApiOperation(value = "删除资源表对应关系,并且删除fastdfs相对应当文件")
- boolean filesDeleteByPath(
- @RequestParam(value = "storagePath") String storagePath);
- @ApiOperation(value = "根据文件的id,获取文件的真实访问路径")
- @RequestMapping(value = ApiVersion.Version1_0 + "/file/getRealPathById", method = RequestMethod.GET)
- String getRealPathById(
- @RequestParam(value = "fileId") String fileId);
- @ApiOperation(value = "根据文件的存储路径,获取文件的真实访问路径")
- @RequestMapping(value = ApiVersion.Version1_0 + "/file/getRealPathByStoragePath", method = RequestMethod.GET)
- String getRealPathByStoragePath(
- @RequestParam(value = "storagePath") String storagePath);
- }
|