blob: ea82f8f3de887687c2fe33d41998895fefcad865 [file] [log] [blame]
夜雨声烦5c9d1312025-04-23 17:46:19 +08001package com.example.g8backend.service;
2
3import com.example.g8backend.entity.Comment;
4
5import java.util.List;
6
7public interface ICommentService {
8
9 void createComment(Long postId, Long userId, String content, Long parentCommentId);
10
11 List<Comment> getCommentsByPostId(Long postId);
12
13 List<Comment> getReplies(Long parentCommentId, int depth);
14
15 boolean deleteComment(Long commentId);
16}