From c7cd444e95f0193f363576340bbe2fe0b82d0fb0 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 09 八月 2023 10:36:45 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java | 18 ++++++++---------- 1 files changed, 8 insertions(+), 10 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..be61639 100644 --- a/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java +++ b/src/main/java/com/moon/server/entity/sys/RoleLayerEntity.java @@ -1,7 +1,5 @@ package com.moon.server.entity.sys; -import io.swagger.models.auth.In; - import java.io.Serializable; import java.sql.Timestamp; @@ -12,7 +10,7 @@ public class RoleLayerEntity implements Serializable { private static final long serialVersionUID = -773018130926889472L; - private int id; + private Integer id; private int roleid; @@ -30,7 +28,7 @@ private String enName; - private Integer type; + private Integer isLayer; private Integer pid; @@ -41,11 +39,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 +111,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