ef06837e2109fd5feaae63411db7795efde287da.svn-base
469 字节
package com.espeed.yxy.dao.impl;
import java.util.List;
import com.espeed.yxy.dao.YxySendFilterAddressDao;
import com.espeed.yxy.pojo.YxySendFilterAddress;
/**
*
* @author 谢勇
* 用户过滤接口
*/
public class YxySendFilterAddressDaoImpl extends HibernateBaseDAOImpl<YxySendFilterAddress, Long> implements YxySendFilterAddressDao{
/**HQL查询*/
public List<YxySendFilterAddress> findByHql(String hql)throws Exception{
return super.getAll(hql);
}
}