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; }