admin
2025-06-06 9cd825aea53fa5ba0cda1485464af027e27f0ce4
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
package tech.aiflowy.ai.entity.base;
 
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id;
import java.io.Serializable;
import java.math.BigInteger;
import java.util.Date;
 
 
public class AiBotConversationMessageBase implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 会话id
     */
    @Id(comment = "会话id")
    private String sessionId;
 
    /**
     * 会话标题
     */
    @Column(comment = "会话标题")
    private String title;
 
    /**
     * BotId
     */
    @Column(comment = "BotId")
    private BigInteger BotId;
 
    /**
     * 创建时间
     */
    @Column(comment = "创建时间")
    private Date created;
 
    /**
     * 用户id
     */
    @Column(comment = "用户id")
    private BigInteger accountId;
 
    public String getSessionId() {
        return sessionId;
    }
 
    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public BigInteger getBotId() {
        return BotId;
    }
 
    public void setBotId(BigInteger botId) {
        BotId = botId;
    }
 
    public Date getCreated() {
        return created;
    }
 
    public void setCreated(Date created) {
        this.created = created;
    }
 
    public BigInteger getAccountId() {
        return accountId;
    }
 
    public void setAccountId(BigInteger accountId) {
        this.accountId = accountId;
    }
}