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
| package com.mzl.flower.entity.film;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import com.mzl.flower.base.BaseAutoPhyEntity;
| import lombok.Data;
|
| /**
| * 评论点赞表
| *
| * @author generator@Fang
| * @since 2025-05-29
| */
| @Data
| @TableName("comment_likes")
| public class CommentLikes extends BaseAutoPhyEntity {
|
| /**
| * 评论ID
| */
| private Integer commentId;
|
| /**
| * 点赞状态(0取消,1有效)
| */
| private Boolean status;
|
|
| }
|
|