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

com.easy.query.sql.starter.config.EasyQueryTrackProperties Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.easy.query.sql.starter.config;

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

/**
 * create time 2023/8/27 16:51
 * 文件说明
 *
 * @author xuejiaming
 */
@ConfigurationProperties(prefix = "easy-query-track")
public class EasyQueryTrackProperties {
    private Boolean enable = true;

    public Boolean getEnable() {
        return enable;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy