YxyMailStencilHtmlDao.java 852 字节
package com.espeed.dao;
 
import java.util.List;

import com.espeed.pojo.YxyMailStencilHtml;
import com.espeed.vo.PageBean;

/***
 * @author 谢勇
 * 模版的网页推广
 */
public interface YxyMailStencilHtmlDao {
	/**实体插入*/
	public int addPojo(YxyMailStencilHtml o)throws Exception;
	/**实体编辑*/
	public void updatePojo(YxyMailStencilHtml o)throws Exception;
	/**HQL查询*/
	public List<YxyMailStencilHtml> findByHql(String hql)throws Exception;
	/**指定条记录*/
	public List<YxyMailStencilHtml> findByHqlSet(String hql,int num)throws Exception;
	/**HQL查询分页*/
	public List<YxyMailStencilHtml> findByHqlPage(String hql,String hqlcount,PageBean pb)throws Exception;
	/**SQL查询*/
	public List<Object> findBySqlQuery(String sql)throws Exception;
	/**HQL更新*/
	public void updateByHql(String hql)throws Exception;
	
}