2014年1月13日
摘要: package com.yangbo.oa.base;import java.util.List;public interface BaseDao { /** * 保存实体 * @param entity */ void save(T entity); /** * 删除实体 * @param id */ void delete(Long id); /** * 更新实体 * @param entity */ void update(T entity); /**... 阅读全文
posted @ 2014-01-13 22:22 jingyunyb 阅读(7974) 评论(0) 推荐(0)