| | |
| | | package cn.iocoder.yudao.module.ai.controller.admin.knowledge.vo.segment; |
| | | |
| | | import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; |
| | | import cn.iocoder.yudao.framework.common.pojo.PageParam; |
| | | import cn.iocoder.yudao.framework.common.validation.InEnum; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | @Schema(description = "管理后台 - AI 知识库分段的分页 Request VO") |
| | | @Schema(description = "管理后台 - AI 知识库分段分页 Request VO") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class AiKnowledgeSegmentPageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "文档编号", example = "1") |
| | | private Long documentId; |
| | | |
| | | @Schema(description = "分段内容关键字", example = "Java 开发") |
| | | @Schema(description = "分段内容") |
| | | private String content; |
| | | |
| | | @Schema(description = "分段状态", example = "1") |
| | | @InEnum(CommonStatusEnum.class) |
| | | @Schema(description = "状态") |
| | | private Integer status; |
| | | |
| | | } |