cn.sylinx.hbatis.db.mapper.DeleteMapper 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 DeleteMapper {
/**
* 获取需要删除对象的表名称
*
* @return String
*/
public String getTableName();
/**
* VO对象到JDBC字段映射,只针对使用到的字段
*
* @return Map
*/
public Map getJavaToJdbcMapper();
/**
* 获取对象的主键字段
*
* @return List
*/
public List getPrimaryKeyFieldNameList();
}