com.github.xiaoymin.knife4j.spring.model.OpenAPIExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knife4j-spring Show documentation
Show all versions of knife4j-spring Show documentation
依赖Springfox框架,生成Spring的增强文档
The newest version!
/*
* Copyright (C) 2018 Zhejiang xiaominfo Technology CO.,LTD.
* All rights reserved.
* Official Web Site: http://www.xiaominfo.com.
* Developer Web Site: http://open.xiaominfo.com.
*/
package com.github.xiaoymin.knife4j.spring.model;
import io.swagger.v3.oas.models.OpenAPI;
import org.springframework.beans.BeanUtils;
/**
* @author [email protected]
* 2020/10/18 18:48
* @since:knife4j 1.0
*/
public class OpenAPIExt extends OpenAPI {
protected SwaggerBootstrapUi swaggerBootstrapUi;
public SwaggerBootstrapUi getSwaggerBootstrapUi() {
return swaggerBootstrapUi;
}
public void setSwaggerBootstrapUi(SwaggerBootstrapUi swaggerBootstrapUi) {
this.swaggerBootstrapUi = swaggerBootstrapUi;
}
public OpenAPIExt(OpenAPI openAPI){
BeanUtils.copyProperties(openAPI,this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy