| | |
| | | package cn.gistack.alerts.notice.feign; |
| | | |
| | | import feign.Request; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 告警 feign 远程调用 |
| | |
| | | * @return |
| | | */ |
| | | @GetMapping(CREATE_ALARM_NOTICE_TASK_JOB_HANDLER) |
| | | String createAlarmNoticeTaskJobHandler(@RequestParam("name") String name, |
| | | void createAlarmNoticeTaskJobHandler(@RequestParam("name") String name, |
| | | @RequestParam("content") String content, |
| | | @RequestParam("title") String type); |
| | | |