zhongrj
2023-08-01 4fd01645f3c8591840a4ef0d2665da4f27a5a812
skjcmanager/skjcmanager-service-api/skjcmanager-sm-api/src/main/java/cn/gistack/sm/intelligentCall/feign/OutCallClient.java
@@ -4,8 +4,11 @@
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
@@ -22,6 +25,7 @@
   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";
@@ -90,4 +94,12 @@
    */
   @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);
}