e4c21c1298b8fba467b4c7fbdbf763e8db141061.svn-base 402 字节
package com.espeed.yxy.dao;

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


public interface YxyMarketingWeekDao {

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