blob: 08ebed6ea18be082ba5604bb41871f697725bec9 [file] [log] [blame]
package com.g9.g9backend.pojo;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.*;
import java.util.Date;
/**
* Comment 实体类,表示评论的数据模型
*
* @author hcy
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Comment {
@TableId
private int commentId;
private int userId;
private int threadId;
private int resourceId;
private int rewardId;
private int replyId;
private String content;
private Date createAt;
}