eacdab16322c52520dbd57e7cf6ec6282da975e3.svn-base 707 字节
package com.espeed.dao;

import java.util.List;

import com.espeed.pojo.YxyMailStencilType;

public interface YxyMailStencilTypeDao {

	/**实体插入*/
	public int addPojo(YxyMailStencilType o)throws Exception;
	/**实体批量处理*/
	public void addPojoPi(List<YxyMailStencilType> o)throws Exception;
	/**实体编辑*/
	public void updatePojo(YxyMailStencilType o)throws Exception;
	/**HQL查询*/
	public List<YxyMailStencilType> findByHql(String hql)throws Exception;
	/**SQL查询*/
	public List<Object> findBySqlQuery(String sql)throws Exception;
	/**hql查询数量*/
	public int findByHqlCount(String hql)throws Exception;
	/**HQL更新*/
	public void updateByHql(String hql)throws Exception;
}