Administrator
14 hours ago 65d83e255e4e1bdfb0336bea920d6c884c510711
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
package cc.mrbird.febs.ai.entity;
 
import cc.mrbird.febs.common.entity.AiBaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("ai_knowledge_file")
public class AiKnowledgeFile extends AiBaseEntity {
    /**
     * 状态:0-上传服务器,1-应用数据,2-知识库
     */
    private Integer state;
    /**
     * 文件ID
     */
    private String jobId;
    /**
     * 文件ID
     */
    private String fileId;
 
    /**
     * 文件存储路径
     */
    private String savePath;
 
    /**
     * 文件名称
     */
    private String name;
 
    /**
     * 公司ID
     */
    private String companyId;
}