Administrator
20 hours ago cee484403a94584ef1fb55bbac641f7bcbfaf6d8
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
package cc.mrbird.febs.ai.entity;
 
import cc.mrbird.febs.common.entity.AiBaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("ai_agent_knowledge")
public class AiAgentKnowledge extends AiBaseEntity {
 
 
    /** 公司ID */
    private String companyId;
    
    /** 名称 */
    private String name;
    
    /** 知识创建时间 */
    private Date knowledgeCreateTime;
 
    /** 智能体ID */
    private String agentId;
 
    /** 知识库ID */
    private String knowledgeId;
 
}