cn.vonce.sql.mapper.ResultSetDelegate 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.
The newest version!
package cn.vonce.sql.mapper;
/**
* 结果集代理类
*
* @author Jovi
* @email [email protected]
* @date 2024/6/14 15:21
*/
public class ResultSetDelegate {
public ResultSetDelegate(T delegate) {
this.delegate = delegate;
}
private T delegate;
public T getDelegate() {
return delegate;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy