From 29af88d0a7741cf1de46a9fe8c62c58ec849433c Mon Sep 17 00:00:00 2001 From: wangting <675591594@qq.com> Date: 星期四, 21 十一月 2024 10:24:04 +0800 Subject: [PATCH] 修改树组件传参 --- Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/MenuVO.java | 39 ++++++++++++++++++++++++++++++--------- 1 files changed, 30 insertions(+), 9 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/MenuVO.java b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/MenuVO.java index 06cda7c..35aa1ce 100644 --- a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/MenuVO.java +++ b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/MenuVO.java @@ -81,7 +81,7 @@ private Integer sort; /** - * 鑿滃崟绫诲瀷 + * 鑿滃崟绫诲瀷: 0锛氳彍鍗曪紝1锛氭寜閽� */ private Integer category; @@ -126,6 +126,11 @@ private String modeType; /** + * 鍔熻兘绫诲瀷锛�0锛氬姛鑳借彍鍗曡妭鐐癸紝1锛氬垎绫�,3锛氭寜閽� + */ + private int functionType; + + /** * 鏄ā鍧椾笅瀛愬璞℃槸妯″潡杩樻槸鎿嶄綔锛�0琛ㄧず鏃犲瓙鑺傜偣锛�1琛ㄧず鏄ā鍧楋紝2琛ㄧず鏄搷浣� */ private Integer childType; @@ -166,6 +171,30 @@ return funcId; } + public void setFunctionType(int functionType) { + this.functionType = functionType; + } + + public void setValid(Boolean valid) { + isValid = valid; + } + + public void setHavePermission(Integer havePermission) { + this.havePermission = havePermission; + } + + public int getFunctionType() { + return functionType; + } + + public Boolean getValid() { + return isValid; + } + + public Integer getHavePermission() { + return havePermission; + } + public String getOperId() { return operId; } @@ -182,10 +211,6 @@ this.resourceMobile = resourceMobile; } - public void setValid(Boolean valid) { - isValid = valid; - } - public String getPathC() { return pathC; } @@ -196,10 +221,6 @@ public String getResourceMobile() { return resourceMobile; - } - - public Boolean getValid() { - return isValid; } public void setIsValid(Boolean isValid) { -- Gitblit v1.9.3