cn.vonce.sql.config.SqlBeanDB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
package cn.vonce.sql.config;
import cn.vonce.sql.enumerate.DbType;
import java.io.Serializable;
/**
* 数据库信息
*
* @author Jovi
* @version 1.0
* @email [email protected]
*/
public class SqlBeanDB implements Serializable {
/**
* 数据库类型
*/
private DbType dbType;
/**
* 数据库配置
*/
private SqlBeanConfig sqlBeanConfig;
public DbType getDbType() {
return dbType;
}
public void setDbType(DbType dbType) {
if (this.dbType == null) {
this.dbType = dbType;
}
}
public SqlBeanConfig getSqlBeanConfig() {
return sqlBeanConfig;
}
public void setSqlBeanConfig(SqlBeanConfig sqlBeanConfig) {
if (this.sqlBeanConfig == null) {
this.sqlBeanConfig = sqlBeanConfig;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy