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
| 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_company")
| public class AiCompany extends AiBaseEntity {
|
| /**
| * 公司名称
| */
| private String name;
|
| /**
| * 公司名称
| */
| private String code;
| /**
| * 知识库ID
| */
| private String knowledgeId;
| /**
| * 文档分类ID
| */
| private String categoryId;
| }
|
|