All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.sylinx.hbatis.db.mapper.UpdateMapper Maven / Gradle / Ivy

The newest version!
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();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy