From dc31792dc1b8ad1658e49ba8fce9a1be924e6fbb Mon Sep 17 00:00:00 2001
From: wu <731351411@qq.com>
Date: 星期四, 30 十一月 2023 08:44:04 +0800
Subject: [PATCH] 理片笼测试修改

---
 springboot-vue3/src/main/java/com/example/springboot/entity/RoleMenuList.java |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/RoleMenuList.java b/springboot-vue3/src/main/java/com/example/springboot/entity/RoleMenuList.java
new file mode 100644
index 0000000..f5be162
--- /dev/null
+++ b/springboot-vue3/src/main/java/com/example/springboot/entity/RoleMenuList.java
@@ -0,0 +1,30 @@
+package com.example.springboot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.io.Serializable;
+
+@EqualsAndHashCode(callSuper = true)
+@Data
+@TableName("`role_menu_list`")
+@ApiModel("瑙掕壊鍜岃彍鍗曞叧绯�")
+public class RoleMenuList extends BaseEntity implements Serializable {
+    private static final long serialVersionUID = 8055008415890637135L;
+
+    @ApiModelProperty("瑙掕壊id")
+    private Long roleId;
+    @ApiModelProperty("鑿滃崟id")
+    private Long menuListId;
+    @ApiModelProperty("鐘舵��")
+    private Integer state;
+
+    @TableField(exist = false)
+    private Role role;
+    @TableField(exist = false)
+    private MenuList menuList;
+}

--
Gitblit v1.8.0