05f2b67e407ea5605102bc5e050c38d87f211baf.svn-base 385 字节
package com.espeed.dao.impl;

import java.util.List;

import com.espeed.dao.YxySmtpListDao;
import com.espeed.pojo.YxySmtpList;

public class YxySmtpListDaoImpl extends HibernateBaseDAOImpl<YxySmtpList,Long> implements YxySmtpListDao{

	/**查询SMTP信息*/
	public List<YxySmtpList> findAllList() throws Exception {
		String hql="from YxySmtpList";
		return super.getAll(hql);
	}

}