更新系统的lib库,去掉多余的包
This commit is contained in:
@@ -78,19 +78,19 @@ public class BaseDAO<T> extends HibernateDaoSupport implements BaseIDAO<T>
|
||||
pageUtil.setPageList(query.list());
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<T> find(Map<String, Object> conditon)throws DataAccessException
|
||||
{
|
||||
return this.getHibernateTemplate().find(" from " + getEntityClass().getName() + " where 1=1 "+ SearchConditionUtil.getCondition(conditon));
|
||||
}
|
||||
// @SuppressWarnings("unchecked")
|
||||
// @Override
|
||||
// public List<T> find(Map<String, Object> conditon)throws DataAccessException
|
||||
// {
|
||||
// return this.getHibernateTemplate().find(" from " + getEntityClass().getName() + " where 1=1 "+ SearchConditionUtil.getCondition(conditon));
|
||||
// }
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<T> find(String hql) throws DataAccessException
|
||||
{
|
||||
return this.getHibernateTemplate().find(" from " + getEntityClass().getName() + " where 1=1 "+ hql);
|
||||
}
|
||||
// @SuppressWarnings("unchecked")
|
||||
// @Override
|
||||
// public List<T> find(String hql) throws DataAccessException
|
||||
// {
|
||||
// return this.getHibernateTemplate().find(" from " + getEntityClass().getName() + " where 1=1 "+ hql);
|
||||
// }
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
|
||||
@@ -77,14 +77,14 @@ public interface BaseIDAO<T>
|
||||
* @param conditon 查询条件
|
||||
* @return 查询列表数据
|
||||
*/
|
||||
List<T> find(Map<String,Object> conditon)throws DataAccessException;
|
||||
// List<T> find(Map<String,Object> conditon)throws DataAccessException;
|
||||
|
||||
/**
|
||||
* 根据hql查询 --没有分页信息
|
||||
* @param hql hibernate查询
|
||||
* @return 查询列表数据
|
||||
*/
|
||||
List<T> find(String hql)throws DataAccessException;
|
||||
// List<T> find(String hql)throws DataAccessException;
|
||||
|
||||
/**
|
||||
* 根据搜索条件查询--分页
|
||||
|
||||
Reference in New Issue
Block a user