blob: 08ebed6ea18be082ba5604bb41871f697725bec9 [file] [log] [blame]
xiukira687b9cb2025-05-29 15:15:02 +08001package com.g9.g9backend.pojo;
2
3import com.baomidou.mybatisplus.annotation.TableId;
4import lombok.*;
5
6import java.util.Date;
7
8/**
9 * Comment 实体类,表示评论的数据模型
10 *
11 * @author hcy
12 */
13@Data
14@AllArgsConstructor
15@NoArgsConstructor
16public class Comment {
17
18 @TableId
19 private int commentId;
20
21 private int userId;
22
23 private int threadId;
24
25 private int resourceId;
26
27 private int rewardId;
28
29 private int replyId;
30
31 private String content;
32
33 private Date createAt;
34}