All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.luohuasheng.bee.rest.swagger.properties.SwaggerProperties Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package net.luohuasheng.bee.rest.swagger.properties;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * @author luohuasheng
 * @date 2020/7/28 09:06
 */
@ConfigurationProperties("springdoc.api")
public class SwaggerProperties {
    private String title = "平台系统接口";
    private String description = "在线文档";
    private String version = "V1.0";

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy