| | |
| | | package cn.gistack.sm.intelligentCall.feign; |
| | | |
| | | import cn.gistack.sm.intelligentCall.entity.CallNotFillRecord; |
| | | import cn.gistack.sm.sjztmd.feign.IAttResManagePersonClientFallback; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | |
| | | String API_PREFIX = "/client"; |
| | | String CREATE_OUT_CALL_TASK_JOB_HANDLER = API_PREFIX + "/createOutCallTaskJobHandler"; |
| | | String CREATE_OUT_CALL_TASK_BY_NOT_CONNECT_JOB_HANDLER = API_PREFIX + "/createOutCallTaskByNotConnectJobHandler"; |
| | | String GET_CALL_NOT_FILL_RECORD_INFO = API_PREFIX + "/getCallNotFillRecordInfo"; |
| | | String TEST_OUT_CALL = API_PREFIX + "/testOutCall"; |
| | | |
| | | /** |
| | |
| | | @RequestParam("taskScheduleTime") String taskScheduleTime, |
| | | @RequestParam("personNumber") String personNumber, |
| | | @RequestParam("day") String day); |
| | | |
| | | /** |
| | | * 智能外呼呼叫前一天未接通人员 |
| | | * @param taskScheduleTime 调度时间 |
| | | * @return |
| | | */ |
| | | @GetMapping(CREATE_OUT_CALL_TASK_BY_NOT_CONNECT_JOB_HANDLER) |
| | | List<String> createOutCallTaskByNotConnectJobHandler(@RequestParam("taskScheduleTime") String taskScheduleTime); |
| | | |
| | | /** |
| | | * 查询未接通填报信息 |
| | | * @param callId 呼叫id |
| | | * @return |
| | | */ |
| | | @GetMapping(GET_CALL_NOT_FILL_RECORD_INFO) |
| | | CallNotFillRecord getCallNotFillRecordInfo(@RequestParam("callId") String callId); |
| | | } |