cn.sylinx.hbatis.db.mapper.QueryMapper 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
package cn.sylinx.hbatis.db.mapper;
import java.util.Map;
/**
* 查询数据做映射
*
* @author han
*
*/
public interface QueryMapper {
/**
* 查询出的字段 和 VO字段对应
*
* @return
*/
Map getJdbcToJavaMapper();
Class getValueObjectClass();
}