blob: 1f6e74fe34bf03cdae94f02bfffff7d47f755c76 [file] [log] [blame]
xiukira687b9cb2025-05-29 15:15:02 +08001package com.g9.g9backend.pojo;
2
xiukirad0a7a082025-06-05 16:28:08 +08003import com.baomidou.mybatisplus.annotation.IdType;
xiukira687b9cb2025-05-29 15:15:02 +08004import com.baomidou.mybatisplus.annotation.TableId;
5import lombok.*;
6
7import java.util.Date;
8
9/**
10 * Comment 实体类,表示评论的数据模型
11 *
12 * @author hcy
13 */
14@Data
15@AllArgsConstructor
16@NoArgsConstructor
17public class Comment {
18
xiukirad0a7a082025-06-05 16:28:08 +080019 @TableId(type = IdType.AUTO)
xiukira687b9cb2025-05-29 15:15:02 +080020 private int commentId;
21
22 private int userId;
23
Seamher01406122025-06-08 19:44:36 +080024 private Integer threadId;
xiukira687b9cb2025-05-29 15:15:02 +080025
Seamher01406122025-06-08 19:44:36 +080026 private Integer resourceId;
xiukira687b9cb2025-05-29 15:15:02 +080027
Seamher01406122025-06-08 19:44:36 +080028 private Integer rewardId;
xiukira687b9cb2025-05-29 15:15:02 +080029
Seamher01406122025-06-08 19:44:36 +080030 private Integer replyId;
xiukira687b9cb2025-05-29 15:15:02 +080031
32 private String content;
33
34 private Date createAt;
35}