zhangnaisong
2024-07-11 783272d17be7fce92808bd9fb99f9d64f450bfc9
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.ruoyi.call.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 会话历史对象 ard_call_history
 * 
 * @author ard
 * @date 2024-07-03
 */
public class ArdCallHistory extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 会话ID */
    @Excel(name = "会话ID")
    private String sessionId;
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
    /** 消息类型 */
    @Excel(name = "消息类型")
    private String type;
 
    /** 消息内容 */
    @Excel(name = "消息内容")
    private String content;
 
    /** 目标ID */
    @Excel(name = "目标ID")
    private String targetId;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
    public void setContent(String content) 
    {
        this.content = content;
    }
 
    public String getContent() 
    {
        return content;
    }
 
    public String getSessionId() {
        return sessionId;
    }
 
    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
 
    public String getTargetId() {
        return targetId;
    }
 
    public void setTargetId(String targetId) {
        this.targetId = targetId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("type", getType())
            .append("content", getContent())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}