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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package cn.gistack.sm.intelligentCall.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 呼叫结果
 * @author zhongrj
 * @date 2023-04-25
 */
@Data
public class CallTaskResult implements Serializable {
 
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    private String id;
 
    /**
     *呼叫结果 接通:200000 未接通:200003 拒接:200005
     */
    private String callResult;
 
    /**
     * 通话时长
     */
    private String callDuration;
 
    /**
     * 对话轮次
     */
    private String callConversationRound;
 
    /**
     * 挂断方向 A机器B用户
     */
    private String callHangupDirection;
 
    /**
     * 呼叫id
     */
    private String callId;
 
    /**
     * 创建时间(执行时间)
     */
    private String gmtCreate;
 
    /**
     * 主叫号码
     */
    private String callingNumber;
 
    /**
     * 被叫号码
     */
    private String calleeNumber;
    /**
     * 任务ID
     */
    private String taskId;
    /**
     * 通话开始时间
     */
    private String callStartTime;
    /**
     * 通话结束时间
     */
    private String callEndTime;
 
    /**
     * 录音文件url
     */
    private String callRecordFile;
 
    /**
     * 意向客户标记
     */
    private String intentionCustomerFlag;
 
    /**
     * 删除标记 0 删除 1未删除
     */
    private Integer isDeleted;
 
}