package com.edianxun.adp.dao;

import java.io.Serializable;
import java.util.List;

/**
 * CRUD通用接口
 * @author lhr
 *	@ date 2014-4-21
 * @param <T>
 */
public interface BaseDao<T> {
	//根据Id加载实体
	T get(Class<T> entityClass, Serializable id);
	//保存实体
	Serializable save(T entity);
	//更新实体
	void update(T entity);
	//删除实体
	void delete(T entity);
	//根据ID删除实体
	void delete(Class<T> entityClass, Serializable id);
	//获取所有实体
	List<T> findAll(Class<T> entityClass);
	//获取所有实体数量
	Long allTotal(Class<T> entityClass);
}
最近下载更多
17787885952  LV3 2022年5月5日
wanglinddad  LV54 2022年4月14日
王燕燕  LV3 2021年12月23日
afei115  LV4 2021年11月20日
cailizhu833  LV2 2021年8月17日
Vera.Wu  LV2 2021年5月29日
and123456  LV11 2021年4月20日
admin_z  LV22 2021年4月18日
小屁孩  LV7 2021年4月11日
weijianjiao  LV1 2021年3月14日
最近浏览更多
educationAAA  LV2 昨天
Gin19960217  LV4 1月19日
aaabbbv 2023年12月17日
暂无贡献等级
WBelong  LV7 2023年12月11日
lt12138  LV2 2023年10月25日
dsadasdwf  LV12 2023年10月23日
1049066887  LV12 2023年10月21日
张朕朕  LV3 2023年9月8日
288984827  LV1 2023年8月25日
uni-code_0123  LV1 2023年8月21日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友