edbd5fb650779ae667c1881ae2c8fd6c9e3467d6.svn-base
378 字节
package com.espeed.dao.impl;
import java.util.List;
import com.espeed.dao.YxyShieldDomainDao;
import com.espeed.pojo.YxyShieldDomain;
public class YxyShieldDomainDaoImpl extends HibernateBaseDAOImpl<YxyShieldDomain, Long> implements YxyShieldDomainDao{
/**hql查询*/
public List<YxyShieldDomain> findByHql(String hql) throws Exception {
return super.getAll(hql);
}
}