cn.sylinx.hbatis.db.mapper.InsertMapper 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
*
* @param
*/
public interface InsertMapper {
/**
* 获取需要插入的表名称
*
* @return String
*/
public String getTableName();
/**
* VO对象到JDBC字段映射
*
* @return Map
*/
public Map getJavaToJdbcMapper();
}