From e16f5fdfbc1c49f4c519f05b190e96e497253b51 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 十一月 2024 17:32:14 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java | 23 +++++++++-------------- 1 files changed, 9 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java b/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java index 7e0bac8..45c5f70 100644 --- a/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java +++ b/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java @@ -1,18 +1,13 @@ package com.moon.server.entity.sys; -import io.swagger.models.auth.In; - import java.io.Serializable; import java.sql.Timestamp; -/** - * 瑙掕壊-鍥惧眰 - * @author WWW - */ +@SuppressWarnings("ALL") public class RoleLayerEntity implements Serializable { private static final long serialVersionUID = -773018130926889472L; - private int id; + private Integer id; private int roleid; @@ -30,7 +25,7 @@ private String enName; - private Integer type; + private Integer isLayer; private Integer pid; @@ -41,11 +36,11 @@ public RoleLayerEntity() { } - public int getId() { + public Integer getId() { return id; } - public void setId(int id) { + public void setId(Integer id) { this.id = id; } @@ -113,12 +108,12 @@ this.enName = enName; } - public Integer getType() { - return type; + public Integer getIsLayer() { + return isLayer; } - public void setType(Integer type) { - this.type = type; + public void setIsLayer(Integer isLayer) { + this.isLayer = isLayer; } public Integer getPid() { -- Gitblit v1.9.3