4de7236a816661f1cab98965439ff5d18f6ae024.svn-base 640 字节
package com.espeed.yxy.dao.impl;

import java.util.List;
import com.espeed.yxy.dao.YxyMarketingPlanDao;
import com.espeed.yxy.pojo.YxyMarketingPlan;

public class YxyMarketingPlanDaoImpl extends HibernateBaseDAOImpl<YxyMarketingPlan, Long> implements YxyMarketingPlanDao {
	
	/**HQL查询*/
	public List<YxyMarketingPlan> findByHql(String hql)throws Exception{
		return super.getAll(hql);
	}
	/**指定条记录*/
	public List<YxyMarketingPlan> findByHqlSet(String hql,int num)throws Exception{
		return super.findBySet(hql, num);
	}
	/**HQL更新*/
	public void updateByHql(String hql)throws Exception{
		super.updateorDelByHql(hql);
	}
}