From b7c94458ce1c37cfc1b8797ebc38a9a03e305b1f Mon Sep 17 00:00:00 2001
From: jiangqs <jiangqs>
Date: 星期四, 17 八月 2023 18:33:32 +0800
Subject: [PATCH] bug

---
 ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java
index 7d75726..f5e1dd7 100644
--- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java
+++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java
@@ -66,6 +66,9 @@
     /** 菜单组 */
     private Long[] staffMenuIds;
 
+    /** 微信部门id */
+    private Long wxDeptId;
+
     public Long getDeptId()
     {
         return deptId;
@@ -216,6 +219,14 @@
         this.staffMenuIds = staffMenuIds;
     }
 
+    public Long getWxDeptId() {
+        return wxDeptId;
+    }
+
+    public void setWxDeptId(Long wxDeptId) {
+        this.wxDeptId = wxDeptId;
+    }
+
     @Override
     public String toString() {
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -234,6 +245,7 @@
             .append("updateBy", getUpdateBy())
             .append("updateTime", getUpdateTime())
             .append("dataScope", getDataScope())
+            .append("wxDeptId", getWxDeptId())
             .toString();
     }
 }

--
Gitblit v1.7.1