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);
}