From 766721e07319143dcbc42c344515bbcfdbd6ea38 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 21 七月 2023 11:14:02 +0800 Subject: [PATCH] 添加tab字段 --- src/main/java/com/moon/server/entity/sys/RoleResEntity.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/moon/server/entity/sys/RoleResEntity.java b/src/main/java/com/moon/server/entity/sys/RoleResEntity.java index 33bb591..d087dca 100644 --- a/src/main/java/com/moon/server/entity/sys/RoleResEntity.java +++ b/src/main/java/com/moon/server/entity/sys/RoleResEntity.java @@ -26,6 +26,8 @@ private String cnName; + private String enName; + private Integer type; private Integer pid; @@ -33,6 +35,8 @@ private Integer level; private Integer sort; + + private String tab; public RoleResEntity() { } @@ -101,6 +105,14 @@ this.cnName = cnName; } + public String getEnName() { + return enName; + } + + public void setEnName(String enName) { + this.enName = enName; + } + public Integer getType() { return type; } @@ -132,4 +144,12 @@ public void setSort(Integer sort) { this.sort = sort; } + + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; + } } -- Gitblit v1.9.3