审查视图

src/com/espeed/yxy/dao/YxyMarketingPlanDao.java 400 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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;
	
}