From 4eb33dda0f123279e9b9507c76c56d47f323472a Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期一, 26 五月 2025 16:39:46 +0800
Subject: [PATCH] add:影视作品增加用户信息
---
src/main/java/com/mzl/flower/entity/film/FilmCategory.java | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/mzl/flower/entity/film/FilmCategory.java b/src/main/java/com/mzl/flower/entity/film/FilmCategory.java
new file mode 100644
index 0000000..ca4ee87
--- /dev/null
+++ b/src/main/java/com/mzl/flower/entity/film/FilmCategory.java
@@ -0,0 +1,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;
+}
\ No newline at end of file
--
Gitblit v1.9.3