mx-community/src/main/java/cn/allms/service/CommentService.java
2021-03-27 17:29:56 +08:00

28 lines
397 B
Java

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