cn.sylinx.hbatis.db.cache.IDataLoader 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.cache;
/**
* 数据装载接口
*
* @author han
*
* @param
* VO对象
*/
public interface IDataLoader {
/**
* 装载数据
*
* @return VO对象
*/
public Object load();
}