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

com.guanmengyuan.spring.ex.openapi.config.OpenApiConfigProperties Maven / Gradle / Ivy

There is a newer version: 1.2.38
Show newest version
package com.guanmengyuan.spring.ex.openapi.config;

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

/**
 * 文档配置类
 */
@Data
@ConfigurationProperties(prefix = "springdoc")
public class OpenApiConfigProperties {
    /**
     * openapi标题
     */
    private String title;
    /**
     * 联系人email
     */
    private String email;
    /**
     * 文档描述
     */
    private String description;

    /**
     * 文档版本
     */
    private String version;
    /**
     * 联系人名称
     */
    private String name;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy