提交 | 用户 | age
|
98401f
|
1 |
package com.hz.his.feign.service.phisAdmin; |
L |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.gzh.GzhTemplateVO; |
|
5 |
import org.springframework.cloud.openfeign.FeignClient; |
|
6 |
import org.springframework.web.bind.annotation.RequestBody; |
|
7 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
8 |
|
|
9 |
/** |
|
10 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
11 |
*/ |
18e8fe
|
12 |
@FeignClient(name="phis-service",contextId = "gzhInfo") |
b3ceea
|
13 |
public interface SGzhTemplateService { |
98401f
|
14 |
|
L |
15 |
/** |
|
16 |
* 发送模板消息 |
|
17 |
* @return |
|
18 |
*/ |
|
19 |
@RequestMapping("/admin/gzh/template/send") |
|
20 |
Result template(@RequestBody GzhTemplateVO gzhTemplateVO); |
|
21 |
} |