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
package tech.aiflowy.ai.entity.base;
 
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.core.handler.FastjsonTypeHandler;
 
import java.io.Serializable;
import java.math.BigInteger;
import java.util.Map;
 
 
public class AiBotWorkflowBase implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Id(keyType = KeyType.Generator, value = "snowFlakeId")
    private BigInteger id;
 
    private BigInteger botId;
 
    private BigInteger workflowId;
 
    @Column(typeHandler = FastjsonTypeHandler.class)
    private Map<String, Object> options;
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    public BigInteger getBotId() {
        return botId;
    }
 
    public void setBotId(BigInteger botId) {
        this.botId = botId;
    }
 
    public BigInteger getWorkflowId() {
        return workflowId;
    }
 
    public void setWorkflowId(BigInteger workflowId) {
        this.workflowId = workflowId;
    }
 
    public Map<String, Object> getOptions() {
        return options;
    }
 
    public void setOptions(Map<String, Object> options) {
        this.options = options;
    }
 
}