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; }