All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.sql.mapper.ResultSetDelegate Maven / Gradle / Ivy

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