1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| package cn.gistack.sm.intelligentCall.feign;
|
| import cn.gistack.sm.intelligentCall.entity.CallNotFillRecord;
| import org.springframework.stereotype.Component;
|
| import java.util.List;
|
| /**
| * 智能外呼Feign失败配置
| * @author zhongrj
| * @date 2023/6/3
| */
| @Component
| public class OutCallClientFallback implements OutCallClient {
| @Override
| public List<String> createOutCallTaskJobHandler(String isOver, String taskScheduleTime, String personNumber, String day) {
| return null;
| }
|
| @Override
| public String testOutCall(String isOver, String taskScheduleTime, String personNumber, String day) {
| return null;
| }
|
| @Override
| public List<String> createOutCallTaskByNotConnectJobHandler(String taskScheduleTime) {
| return null;
| }
|
| @Override
| public CallNotFillRecord getCallNotFillRecordInfo(String callId) {
| return null;
| }
| }
|
|