package com.xubx.springboot_01demo.mapper;

import com.xubx.springboot_01demo.pojo.Comment;

import java.util.List;

public interface CommentMapper {
    //获取该文章的所有评论
    List<Comment> findAllComment(int article_id);
    //新增评论
    void addComment(Comment comment);
    //获取回复评论区
}