4 天以前 83e1b4d0e661f11a407fd6ea86e906b9b87b7180
yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/controller/admin/knowledge/vo/knowledge/AiKnowledgePageReqVO.java
@@ -1,25 +1,22 @@
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 = "创建时间")