yxh
2025-02-14 3b0a4298b0d6e40b8afa371d221ff1b1ee748c80
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
package com.smartor.domain.robot.back;
 
import com.smartor.domain.robot.RobotDataConfig;
import com.smartor.domain.robot.RobotDataCustomVar;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class RobotCallBack {
    @ApiModelProperty(value = "所属的用户")
    private String app_id;
 
    @ApiModelProperty(value = "接入商自定义业务 uuid,bs_uuid 相同为同一次呼叫的消息")
    private String bs_uuid;
 
    @ApiModelProperty(value = "通话 uuid")
    private String call_uuid;
 
    @ApiModelProperty(value = "主叫号码")
    private String ani;
 
    @ApiModelProperty(value = "被叫号码")
    private String dnis;
 
    @ApiModelProperty(value = "呼叫方向:1 呼入,2 呼出")
    private String call_direction;
 
    @ApiModelProperty(value = "本次通话的录音文件路径+名称,人工手动外呼且电话接通状态时才会有该参数")
    private String record_file;
 
    @ApiModelProperty(value = "呼叫状态 ID,0-n 按顺序递增")
    private String state_id;
 
    @ApiModelProperty(value = "呼叫状态描述:")
    private String state_desc;
 
    @ApiModelProperty(value = "时间戳,微秒级")
    private String time_stamp;
 
 
}