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