| package com.g9.g9backend.pojo; |
| |
| import com.baomidou.mybatisplus.annotation.IdType; |
| import com.baomidou.mybatisplus.annotation.TableId; |
| import lombok.*; |
| |
| import java.util.Date; |
| |
| /** |
| * Comment 实体类,表示评论的数据模型 |
| * |
| * @author hcy |
| */ |
| @Data |
| @AllArgsConstructor |
| @NoArgsConstructor |
| public class Comment { |
| |
| @TableId(type = IdType.AUTO) |
| private int commentId; |
| |
| private int userId; |
| |
| private Integer threadId; |
| |
| private Integer resourceId; |
| |
| private Integer rewardId; |
| |
| private Integer replyId; |
| |
| private String content; |
| |
| private Date createAt; |
| } |