NewsAttributeDAO.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-11-10
  3.  *
  4.  * TODO To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Style - Code Templates
  6.  */
  7. package com.mycompany.news.dao;
  8. import java.sql.Connection;
  9. import java.sql.SQLException;
  10. import com.mycompany.news.dto.News;
  11. /**
  12.  * @author Administrator
  13.  *
  14.  * TODO To change the template for this generated type comment go to
  15.  * Window - Preferences - Java - Code Style - Code Templates
  16.  */
  17. public interface NewsAttributeDAO {
  18. public News getByID(long id)throws Exception;//根据主键获取对象
  19. public void setConnection(Connection conn);
  20. public Connection getConnection();
  21. public String getAttributeValue(long newsid,String attributeName,int attrType) throws SQLException;
  22. public void deleteByNews(News news) throws Exception;
  23. public void recommendNews(long news) throws Exception;
  24. public void cancelRecommend(long news) throws Exception;
  25. }