io.github.nichetoolkit.mybatis.configure.MybatisRecordProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-toolkit-starter Show documentation
Show all versions of mybatis-toolkit-starter Show documentation
mybatis toolkit starter project for Spring Boot
package io.github.nichetoolkit.mybatis.configure;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* MybatisRecordProperties
* The mybatis record properties class.
* @author Cyan ([email protected])
* @see lombok.Setter
* @see lombok.Getter
* @see org.springframework.boot.context.properties.ConfigurationProperties
* @since Jdk1.8
*/
@Setter
@Getter
@ConfigurationProperties(prefix = "nichetoolkit.mybatis.record")
public class MybatisRecordProperties {
/**
* enabled
* The enabled
field.
*/
private boolean enabled = false;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy