新闻发布项目——接口类(commentDao)
生活随笔
收集整理的這篇文章主要介紹了
新闻发布项目——接口类(commentDao)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package bdqn.newsMange.Dao;import java.util.List;import bdqn.newsMange.entity.comment;/*** 新聞評論的接口* @author Administrator**/
public interface commentDao {//查詢public List<comment>getCommentAll();//根據id查詢新聞信息public List<comment> getCommentAllByNewsid(int newsid); //添加public int addComment(comment comm);//修改public int updateComment(comment comm);//刪除public int delComment(int id);
}
總結
以上是生活随笔為你收集整理的新闻发布项目——接口类(commentDao)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何在iPhone上添加信用卡
- 下一篇: 新闻发布项目——接口类(category