Michael Yang
2025-05-07 5afa5041ea166f462a90a996d5264c64837f4341
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 tech.aiflowy.common.ai;
 
import java.io.Serializable;
 
public class FunctionModule implements Serializable {
    private String name;
    private String title;
    private String description;
 
    private Object functionsObject;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public Object getFunctionsObject() {
        return functionsObject;
    }
 
    public void setFunctionsObject(Object functionsObject) {
        this.functionsObject = functionsObject;
    }
}