YxyShieldDomainDaoImpl.java 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);
	}

}