办学质量监测教学评价系统
ageer
2024-01-16 1f7f97e86a79ee4f1515d753e84a1e20a3ec41fb
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
package com.xmzs.common.chat.entity.chat.tool;
 
 
import lombok.*;
 
import java.io.Serializable;
 
/**
 * @author <a href="https://www.unfbx.com">unfbx</a>
 * @since 1.1.2
 * 2023-11-09
 */
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Tools implements Serializable {
 
    /**
     * 目前只支持:function
     *
     * @see Type
     */
    private String type;
 
    private ToolsFunction function;
 
    @Getter
    @AllArgsConstructor
    public enum Type {
        FUNCTION("function"),
        ;
        private final String name;
    }
}