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
| package com.mzl.flower.entity.film;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import com.mzl.flower.base.BaseAutoEntity;
| import lombok.Data;
|
| /**
| * 影视作品收藏表
| *
| * @author generator@Fang
| * @since 2025-05-29
| */
| @Data
| @TableName("film_collects")
| public class FilmCollects extends BaseAutoEntity {
|
|
| /**
| * 关联的影视作品ID
| */
| private Integer filmId;
|
| /**
| * 收藏状态(0取消,1有效)
| */
| private Boolean status;
|
|
| }
|
|