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
package tech.aiflowy.ai.entity.base;
 
import tech.aiflowy.common.entity.DateEntity;
import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
 
import java.io.Serializable;
import java.math.BigInteger;
import java.util.Date;
 
 
public class AiChatTopicBase extends DateEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Id(keyType = KeyType.Generator, value = "snowFlakeId")
    private BigInteger id;
 
    private BigInteger accountId;
 
    private String title;
 
    private Date created;
 
    private Date modified;
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    public BigInteger getAccountId() {
        return accountId;
    }
 
    public void setAccountId(BigInteger accountId) {
        this.accountId = accountId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Date getCreated() {
        return created;
    }
 
    public void setCreated(Date created) {
        this.created = created;
    }
 
    public Date getModified() {
        return modified;
    }
 
    public void setModified(Date modified) {
        this.modified = modified;
    }
 
}