2d7acf8864bdf5d0051d7a00b550d786fa668f63.svn-base
619 字节
package yxy.timer.dao;
import java.util.List;
import yxy.timer.pojo.YxyMailNumCount;
public interface YxyMailNumCountDao {
/**实体插入*/
public int addPojo(YxyMailNumCount o)throws Exception;
/**实体编辑*/
public void updatePojo(YxyMailNumCount o)throws Exception;
/**HQL查询*/
public List<YxyMailNumCount> findByHql(String hql)throws Exception;
/**指定条记录*/
public List<YxyMailNumCount> findByHqlSet(String hql,int num)throws Exception;
/**SQL查询*/
public List<Object> findBySqlQuery(String sql)throws Exception;
/**HQL更新*/
public void updateByHql(String hql)throws Exception;
}