package com.service; import java.util.List; import com.entity.Comment; import com.github.pagehelper.PageInfo; public interface ICommentService { Comment findCommentById(long comment_id); Integer addComemnt(Comment comment); Integer updateComment(Comment comment); Integer deleteComment(long comment_id); List findAllComments(); List findCommentsByMovieId(long movie_id); PageInfo findAllCommentsBySplitPage(Integer page,Integer limit,String keyword); PageInfo findCommentsByUserName(Integer page,Integer limit,String user_name); }