d4025a85aad55d4377e5abae99141a34aa884db7.svn-base 400 字节
package com.espeed.yxy.dao;

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

public interface YxyMarketingPlanDao {
	/**HQL查询*/
	public List<YxyMarketingPlan> findByHql(String hql)throws Exception;
	/**指定条记录*/
	public List<YxyMarketingPlan> findByHqlSet(String hql,int num)throws Exception;
	/**HQL更新*/
	public void updateByHql(String hql)throws Exception;
	
}