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 child; private static final long serialVersionUID = 1L; }