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