cn.sylinx.hbatis.db.mapper.UpdateMapper 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.List;
import java.util.Map;
/**
* 更新数据库映射
*
* @author han
*
* @param
*/
public interface UpdateMapper {
/**
* 获取需要更新的表名称
*
* @return
*/
public String getTableName();
/**
* VO对象到JDBC字段映射
*
* @return
*/
public Map getJavaToJdbcMapper();
/**
* 获取主键字段名称
*
* @return
*/
public List getPrimaryKeyFieldNameList();
}