提交 | 用户 | age
|
ddd881
|
1 |
package com.hz.his.feign.service.phis; |
7c680b
|
2 |
|
C |
3 |
import com.hx.resultTool.Result; |
f5bce1
|
4 |
import com.hz.his.dto.gzh.GzhDto; |
7c680b
|
5 |
import org.springframework.cloud.openfeign.FeignClient; |
C |
6 |
import org.springframework.web.bind.annotation.PostMapping; |
|
7 |
import org.springframework.web.bind.annotation.RequestBody; |
|
8 |
|
|
9 |
/** |
|
10 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
11 |
*/ |
|
12 |
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "gzh") |
|
13 |
public interface SGzhService { |
|
14 |
|
|
15 |
/** |
|
16 |
* 获取公众号绑定列表 |
|
17 |
*/ |
|
18 |
@PostMapping(value = "/gzh/list") |
f5bce1
|
19 |
Result getGzhList(@RequestBody GzhDto gzhDto); |
7c680b
|
20 |
|
C |
21 |
} |