0094f741112911d28b30d2460d3586f09e9b9b68.svn-base 570 字节
package yxy.timer.dao;

import java.util.List;

import yxy.timer.pojo.YxyReplyInfo;
/**
 * 
 * @author xieyong
 * 回复DAO接口
 */
public interface YxyReplyInfoDao {
	/**实体插入*/
	public int addPojo(YxyReplyInfo reply)throws Exception;
	/**查询指定量数据*/
	public List<YxyReplyInfo> findByHqlSet(String hql,int num)throws Exception;
	/**统计条数*/
	public int count(String hql)throws Exception;
	/**根据sql查询*/
	public List<Object> findBySql(String sql)throws Exception;
	/**hql更新*/
	public void updateByHql(String hql)throws Exception;
}