java110
2020-06-05 dab387fb9589dd0ea4b9e89d51079df3713358a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.java110.core.smo.common;
 
import com.java110.core.feign.FeignConfiguration;
import com.java110.dto.file.FileDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
import java.util.List;
 
/**
 * 文件处理,将文件 存在数据库中(只有演示环境可以保存到数据库中,正式环境 应该对接到文件系统)
 */
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@RequestMapping("/fileApi")
public interface IFileInnerServiceSMO {
 
    /**
     * 保存文件
     * @param fileDto 文件数据封装
     * @return true 成功 false 失败
     */
    @RequestMapping(value = "/saveFile", method = RequestMethod.POST)
    String saveFile(@RequestBody FileDto fileDto);
 
    /**
     * 查询文件信息
     * @param fileDto 文件数据封装
     * @return 文件数据对象
     */
    @RequestMapping(value = "/queryFiles", method = RequestMethod.POST)
    List<FileDto> queryFiles(@RequestBody FileDto fileDto);
}