package com.mzl.flower.entity.film;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.mzl.flower.base.BaseAutoPhyEntity;
|
import lombok.Data;
|
|
|
@Data
|
@TableName("film_comments")
|
public class CommentPo extends BaseAutoPhyEntity {
|
|
/**
|
* 父评论id
|
*/
|
@TableField("parent_id")
|
private Integer parentId;
|
|
/**
|
* 被评论帖子id
|
*/
|
@TableField("film_id")
|
private Integer filmId;
|
|
/**
|
* 评论内容
|
*/
|
@TableField("content")
|
private String content;
|
|
/**
|
* 状态(0禁用,1启用)
|
*/
|
@TableField("state")
|
private Boolean state;
|
|
@TableField("film_pictures")
|
private String filmPictures;
|
|
}
|