| | |
| | | import cn.gistack.sm.sjztmd.feign.IAttResManagePersonClientFallback; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 智能外呼任务 feign |
| | |
| | | String CREATE_OUT_CALL_TASK_JOB_HANDLER_BY_NOT_CALL = API_PREFIX + "/createOutCallTaskJobHandlerByNotCall"; |
| | | String CREATE_OUT_CALL_TASK_BY_NOT_CONNECT_JOB_HANDLER = API_PREFIX + "/createOutCallTaskByNotConnectJobHandler"; |
| | | String GET_CALL_NOT_FILL_RECORD_INFO = API_PREFIX + "/getCallNotFillRecordInfo"; |
| | | String CREATE_OUT_CALL_TASK_BY_ALARM = API_PREFIX + "/createOutCallTaskByAlarm"; |
| | | String CREATE_CALL_SMS_NOTICE_TASK = API_PREFIX + "/createCallSmsNoticeTask"; |
| | | String TEST_OUT_CALL = API_PREFIX + "/testOutCall"; |
| | | |
| | |
| | | */ |
| | | @GetMapping(CREATE_CALL_SMS_NOTICE_TASK) |
| | | Boolean createCallSmsNoticeTask(@RequestParam("taskId") String taskId); |
| | | |
| | | /** |
| | | * 创建告警外呼任务 |
| | | * @param map |
| | | * @return |
| | | */ |
| | | @PostMapping(CREATE_OUT_CALL_TASK_BY_ALARM) |
| | | List<String> createOutCallTaskByAlarm(@RequestBody Map<String, Object> map); |
| | | } |