cn.sylinx.hbatis.db.common.Callable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.db.common;
import java.sql.Connection;
import java.sql.SQLException;
public interface Callable {
/**
* 自定义操作
*
* @param con
* 无需手动关闭
* @return
*/
public T call(Connection con) throws SQLException;
}