guoshilong
2023-06-05 70f08b8141b9ef7acb987ffdd59c94583f26a1c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.gistack.alerts.notice.feign;
 
import org.springframework.stereotype.Component;
 
/**
 * 告警通知远程调用异常处理
 * @author zhongrj
 * @date 2023-06-03
 */
@Component
public class NoticeClientFallBack implements NoticeClient {
 
    @Override
    public String createAlarmNoticeTaskJobHandler(String name, String content, String type) {
        return null;
    }
}