8efda63490d8038cc52c69e86944b92a3b3547e5.svn-base
876 字节
package com.espeed.dao;
import java.util.List;
import com.espeed.pojo.YxyMailStencilKeyword;
import com.espeed.vo.PageBean;
/***
* @author 谢勇
* 模版的关键词配置
*/
public interface YxyMailStencilKeywordDao {
/**实体插入*/
public int addPojo(YxyMailStencilKeyword o)throws Exception;
/**实体编辑*/
public void updatePojo(YxyMailStencilKeyword o)throws Exception;
/**HQL查询*/
public List<YxyMailStencilKeyword> findByHql(String hql)throws Exception;
/**指定条记录*/
public List<YxyMailStencilKeyword> findByHqlSet(String hql,int num)throws Exception;
/**HQL查询分页*/
public List<YxyMailStencilKeyword> 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;
}