cloudroam
2025-06-06 70f642c9a5090f051814d46c8f5bbce5e366ba89
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
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("t_film_category")
public class FilmCategory extends BaseAutoPhyEntity {
 
    @TableField("name")
    private String name;
 
    @TableField("parent_id")
    private Long parentId;
 
    @TableField("parent_name")
    private String parentName;
 
    @TableField("type")
    private String type;
 
    @TableField("code")
    private String code;
 
    @TableField("sort_by")
    private Integer sortBy;
 
    @TableField("image_url")
    private String imageUrl;
 
    @TableField("shown")
    private Boolean shown;
 
    @TableField("level_limit")
    private String levelLimit;