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

cn.sylinx.hbatis.db.common.DbMapper Maven / Gradle / Ivy

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

import java.io.Serializable;

/**
 * 简单的映射操作
 * 
 * @author han
 *
 */
public interface DbMapper extends MapperQuery, ObjectQuery {

	/**
	 * 更新
	 * 
	 * @param t
	 *            更新
	 * @return 更新记录数
	 */
	public  int update(T t);

	/**
	 * 保存
	 * 
	 * @param t
	 *            T对象
	 * @return 主键
	 */
	public  Serializable save(T t);

	/**
	 * 删除
	 * 
	 * @param t
	 *            T对象
	 * @return 删除数量
	 */
	public  int delete(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy