com.kukababy.plus.pojo.SqlCfg Maven / Gradle / Ivy
The newest version!
/**
*
*/
package com.kukababy.plus.pojo;
import javax.script.ScriptEngine;
import org.springframework.jdbc.core.JdbcTemplate;
import com.kukababy.plus.utils.Constant;
/**
* 描述::
*
*
*
*
*
*
* @author [email protected]
* @date 2019年3月1日 上午9:07:49
*/
public class SqlCfg {
private JdbcTemplate jdbcTemplate;
/**
* 变量名是否转为驼峰格式的数据库字段,empId-->emp_id
*/
private Boolean camel = false;
/**
* 数据库
*/
private String dbType = Constant.Mysql;
private String jsClassPath = "";
/**
* @return the jdbcTemplate
*/
public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate;
}
/**
* @param jdbcTemplate
* the jdbcTemplate to set
*/
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
/**
* @return the camel
*/
public Boolean getCamel() {
return camel;
}
/**
* @param camel the camel to set
*/
public void setCamel(Boolean camel) {
this.camel = camel;
}
/**
* @return the dbType
*/
public String getDbType() {
return dbType;
}
/**
* @param dbType
* the dbType to set
*/
public void setDbType(String dbType) {
this.dbType = dbType;
}
/**
* @return the jsClassPath
*/
public String getJsClassPath() {
return jsClassPath;
}
/**
* @param jsClassPath the jsClassPath to set
*/
public void setJsClassPath(String jsClassPath) {
this.jsClassPath = jsClassPath;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy