package cn.allms.service; import cn.allms.po.Comment; import java.util.List; /** * 评论 */ public interface CommentService { /** * 通过id查询评论列表 * @param blogId * @return */ List listCommentByBlogId(Long blogId); /** * 保存评论信息 * @param comment * @return */ Comment saveComment(Comment comment); }