夜雨声烦 | 5c9d131 | 2025-04-23 17:46:19 +0800 | [diff] [blame^] | 1 | package com.example.g8backend.dto; |
2 | |||||
3 | import java.util.List; | ||||
4 | |||||
5 | public class CommentDTO { | ||||
6 | private Long commentId; | ||||
7 | private Long userId; | ||||
8 | private String content; | ||||
9 | private List<CommentDTO> replies; | ||||
10 | |||||
11 | // Getter and Setter | ||||
12 | } |