cloudroam
2025-06-06 dae24183738a97972e072604caf4815d9c2ba5bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
 
}