cn.tangjiabao.halodb.dbutils.dao.impl.DbUtilsHaloDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.dbutils.dao.impl;
import java.sql.Connection;
import javax.sql.DataSource;
import cn.tangjiabao.halodb.dbutils.DbUtilsEx;
/**
* 普通的Dao
* @author [email protected]
* @date 2015-6-14 下午10:16:42
* @param
*/
public abstract class DbUtilsHaloDao extends AbstractDbUtilsHaloDao{
@Override
protected Connection getConnection(DataSource dataSource) {
return DbUtilsEx.getConnection(dataSource);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy