| | |
| | | package cn.iocoder.yudao.module.ai.controller.admin.knowledge.vo.knowledge; |
| | | |
| | | 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; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
| | | |
| | | @Schema(description = "管理后台 - AI 知识库的分页 Request VO") |
| | | @Schema(description = "管理后台 - AI 知识库分页 Request VO") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class AiKnowledgePageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "知识库名称", example = "芋艿") |
| | | @Schema(description = "知识库名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "是否启用", example = "1") |
| | | @InEnum(CommonStatusEnum.class) |
| | | @Schema(description = "状态") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "创建时间") |