package com.xubx.springboot_01demo.mapper; import com.xubx.springboot_01demo.pojo.Comment; import com.xubx.springboot_01demo.vo.CommentVo; import java.util.List; public interface CommentMapper { //获取该文章的所有评论 List findAllComment(int article_id); //新增评论 void addComment(Comment comment); //获取回复评论区 }