zhongrj
2023-06-02 ebf10ccf6217dfeebad750b4f4bb9ef4d9af68b0
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
35
36
37
38
39
40
41
42
43
44
package cn.gistack.sm.intelligentCall.constant;
 
/**
 * 智能呼叫配置信息常量
 * @author zhongrj
 * @since 2023-04-21
 */
public class CallConstant {
 
    /**
     * post
     */
    public static final String HOST = "http://64.97.209.77:80";
 
    /**
     * appKey
     */
    public static final String AppKey = "app_qufenqi_eolb";
 
    /**
     * appSecret
     */
    public static final String AppSecret = "ea3b23ecdb2247e9bcbccbdee7d5dbf4";
 
 
    public static final String scenesId = "228";
 
 
    public static final String callingNumbers = "00862787222298";
 
 
    public static final String empId = "24";
 
    /**
     * 创建会话url
     */
    public static final String createTaskUrl1 = "/api/task/createTask.json";
 
    /**
     * 会话详情url
     */
    public static final String taskDetailUrl = "/api/task/callDetail.json";
 
}