提交 | 用户 | age
|
899579
|
1 |
package com.hz.his.feign.service.platform; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.file.FileExUpdateDto; |
|
5 |
import com.hz.his.dto.file.FileExportDto; |
|
6 |
import org.springframework.cloud.openfeign.FeignClient; |
|
7 |
import org.springframework.web.bind.annotation.PostMapping; |
|
8 |
import org.springframework.web.bind.annotation.RequestBody; |
|
9 |
|
|
10 |
/** |
|
11 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
12 |
*/ |
|
13 |
@FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-file") |
|
14 |
public interface SPhipFileService { |
|
15 |
|
|
16 |
/** |
|
17 |
* 开放平台-生成导出文件记录 |
1774d4
|
18 |
* 转换FileExportDt |
899579
|
19 |
*/ |
F |
20 |
@PostMapping(value = "/file/common/export/getId") |
|
21 |
Result getFileExportRecord(@RequestBody FileExportDto fileExportDto); |
|
22 |
|
|
23 |
/** |
|
24 |
* 开放平台-生成导出文件记录 |
|
25 |
*/ |
|
26 |
@PostMapping(value = "/file/common/export/update") |
|
27 |
Result updateRecordById(@RequestBody FileExUpdateDto fileExUpdateDto); |
|
28 |
} |