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

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

There is a newer version: 2.0.0.RELEASE
Show newest version
package cn.sylinx.hbatis.db.mapper;

import java.util.List;
import java.util.Map;

/**
 * 删除对象
 * 
 * @author han
 *
 * @param 
 */
public interface DeleteMapper {
	
	/**
	 * 获取需要删除对象的表名称
	 * 
	 * @return String
	 */
	public String getTableName();
	
	/**
	 * VO对象到JDBC字段映射,只针对使用到的字段
	 * 
	 * @return Map
	 */
	public Map getJavaToJdbcMapper();
	
	/**
	 * 获取对象的主键字段
	 * 
	 * @return List
	 */
	public List getPrimaryKeyFieldNameList();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy