f0f5ed1d53a989d6fa4ca690fe3a3ba18fad45d0.svn-base
748 字节
package com.espeed.dao;
import java.util.List;
import com.espeed.pojo.YxyMailMany;
import com.espeed.vo.PageBean;
public interface YxyMailManyDao {
/**实体插入*/
public int addPojo(YxyMailMany o)throws Exception;
/**实体编辑*/
public void updatePojo(YxyMailMany o)throws Exception;
/**HQL查询*/
public List<YxyMailMany> findByHql(String hql)throws Exception;
/**指定条记录*/
public List<YxyMailMany> findByHqlSet(String hql,int num)throws Exception;
/**HQL查询分页*/
public List<YxyMailMany> 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;
}