IBaseDao数据库操作接口 public interface IBaseDao { /** * 插入数据 * @param entity * @return */ Long insert(T entity); int update(T entity,T where); /** * 删除数据 * @param where * @return */ int delete(T where); /** * 查询数
public interface IBaseDao面向对象数据库架构设计.rar 面向对象数据库架构设计.rar{ /** * 插入数据 * @param entity * @return */ Long insert(T entity); int update(T entity,T where); /** * 删除数据 * @param where * @return */ int delete(T where); /** * 查询数据 * @param where * @return */ List query(T where); List query(T where,String orderBy,Integer startIndex,Integer limit); List query(String sql); }