| | |
| | | import cn.iocoder.yudao.framework.common.pojo.PageParam; |
| | | 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 AiKnowledgeDocumentPageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "知识库编号", example = "1") |
| | | private Long knowledgeId; |
| | | |
| | | @Schema(description = "文档名称", example = "Java 开发手册") |
| | | @Schema(description = "文档名称") |
| | | private String name; |
| | | |
| | | } |