3 天以前 83e1b4d0e661f11a407fd6ea86e906b9b87b7180
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
38
39
40
41
package cn.iocoder.yudao.module.ai.controller.admin.knowledge.vo.document;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - AI 知识库文档 Response VO")
@Data
public class AiKnowledgeDocumentRespVO {
 
    @Schema(description = "编号", example = "1")
    private Long id;
 
    @Schema(description = "知识库编号", example = "1")
    private Long knowledgeId;
 
    @Schema(description = "文档名称", example = "产品手册")
    private String name;
 
    @Schema(description = "文档 URL")
    private String url;
 
    @Schema(description = "内容长度")
    private Integer contentLength;
 
    @Schema(description = "Token 数")
    private Integer tokens;
 
    @Schema(description = "分段最大 Token 数")
    private Integer segmentMaxTokens;
 
    @Schema(description = "检索次数")
    private Integer retrievalCount;
 
    @Schema(description = "状态", example = "0")
    private Integer status;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}