cloudroam
2025-06-04 ed0dc655e6732f15d30f399c0d460ad7b9fe42da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.mzl.flower.dto.response.film;
 
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
 
/**
 * @author fanghaowei
 * @date 2025/6/6 14:30
 */
@Data
public class CommentDTO implements Serializable {
    /**
     * 评论编号
     */
    private Integer id;
 
    /**
     * 父评论id
     */
    private Integer parentId;
 
    /**
     * 评论内容
     */
    private String content;
 
    /**
     * 被评论帖子id
     */
    private Integer filmId;
 
    /**
     * 状态(0禁用,1启用)
     */
    private Boolean state;
 
    /**
     * 逻辑删除(0正常,1删除)
     */
    private Boolean deleted;
 
    /**
     * 评论用户id
     */
    private String createBy;
 
    /**
     * 评论用户名称
     */
    private String commentUserName;
 
    /**
     * 用户头像
     */
    private String picture;
 
    /**
     * 等级(Lv6)
     */
    private String level;
 
    /**
     * 是否点赞
     */
    private Boolean isLike;
 
    /**
     * 点赞数量
     */
    private Long likeCount;
 
    /**
     * 回复数量
     */
    private Integer repliesCount;
 
    /**
     * 评论深度
     */
    private Integer depth;
 
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
 
    /**
     * 更新时间
     */
    private LocalDateTime updateTime;
 
    private List<CommentDTO> child;
 
    private static final long serialVersionUID = 1L;
 
}