30 lines
1.0 KiB
Java
30 lines
1.0 KiB
Java
package com.muyu.common.system.remote;
|
|
|
|
import com.muyu.common.core.constant.ServiceNameConstants;
|
|
import com.muyu.common.core.domain.Result;
|
|
import com.muyu.common.system.domain.SysFile;
|
|
import com.muyu.common.system.remote.factory.RemoteFileFallbackFactory;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestPart;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
/**
|
|
* 文件服务
|
|
*
|
|
* @author muyu
|
|
*/
|
|
@FeignClient(contextId = "remoteFileService", value = ServiceNameConstants.FILE_SERVICE, fallbackFactory = RemoteFileFallbackFactory.class)
|
|
public interface RemoteFileService {
|
|
/**
|
|
* 上传文件
|
|
*
|
|
* @param file 文件信息
|
|
*
|
|
* @return 结果
|
|
*/
|
|
@PostMapping(value = "/upload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
public Result<SysFile> upload (@RequestPart(value = "file") MultipartFile file);
|
|
}
|