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

com.yanyun.go.properties.GoProperties Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.yanyun.go.properties;

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

/**
 * go 测试的配置
 */
@ConfigurationProperties(prefix = "go")
public class GoProperties {
    /**
     * 是否开启swagger上的Go测试提示以及输出
     */
    private boolean enable;

    public boolean isEnable() {
        return enable;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy