
sf.core.LazyLoadTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.core;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Collection;
/**
* 延迟加载执行句柄
* @author
*/
public interface LazyLoadTask {
void process(Connection db, Object obj) throws SQLException;
Collection getEffectFields();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy