5ee7047c3a3154b12b5338e1b029664d84a88c82.svn-base 474 字节
package yxy.timer.dao;

import java.util.List;

import yxy.timer.pojo.YxySendMailMaster;

/*
 * 邮件dao
 */
public interface YxySendMailMasterDao {

	//查询邮件
	public List<YxySendMailMaster> findByHql(String hql)throws Exception;
	//批量更新实体
	public void updateByMaster(List<YxySendMailMaster> o)throws Exception;
	//sql查询
	public List<Object> findbysql(String sql)throws Exception;
	//sql更新
	public void updatebysql(String sql)throws Exception;
}